GRASS Programmer's Manual 6.4.1(2011)
popen.c
Go to the documentation of this file.
00001 #include <stdio.h>
00002 #include <grass/gis.h>
00003 
00004 FILE *G_popen(const char *cmd, const char *mode)
00005 {
00006     return popen(cmd, mode);
00007 }
00008 
00009 int G_pclose(FILE * ptr)
00010 {
00011     return pclose(ptr);
00012 }
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines