GRASS Programmer's Manual  6.4.4(2014)-r
popen.c
Go to the documentation of this file.
1 #include <stdio.h>
2 #include <grass/gis.h>
3 
4 FILE *G_popen(const char *cmd, const char *mode)
5 {
6  return popen(cmd, mode);
7 }
8 
9 int G_pclose(FILE * ptr)
10 {
11  return pclose(ptr);
12 }
tuple cmd
Definition: forms.py:2019
FILE * G_popen(const char *cmd, const char *mode)
Definition: popen.c:4
int G_pclose(FILE *ptr)
Definition: popen.c:9
tuple mode
Definition: tools.py:1481