GRASS Programmer's Manual  6.4.3(2013)-r
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
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 }