GRASS Programmer's Manual
6.4.2(2012)
Main Page
Related Pages
Namespaces
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
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
}
lib
gis
popen.c
Generated on Sun Sep 9 2012 18:55:34 for GRASS Programmer's Manual by
1.8.1.2