GRASS GIS 8 Programmer's Manual
8.2.2dev(2023)-3d2c704037
|
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <grass/gis.h>
#include <grass/spawn.h>
Go to the source code of this file.
Functions | |
void | G_popen_clear (struct Popen *state) |
FILE * | G_popen_write (struct Popen *state, const char *program, const char **args) |
FILE * | G_popen_read (struct Popen *state, const char *program, const char **args) |
void | G_popen_close (struct Popen *state) |
void G_popen_clear | ( | struct Popen * | state | ) |
Definition at line 59 of file popen.c.
References Popen::fp, NULL, and Popen::pid.
Referenced by G_open_mail(), and G_open_pager().
void G_popen_close | ( | struct Popen * | state | ) |
Definition at line 75 of file popen.c.
References Popen::fp, G_wait(), and Popen::pid.
Referenced by G_close_mail(), and G_close_pager().
FILE* G_popen_read | ( | struct Popen * | state, |
const char * | program, | ||
const char ** | args | ||
) |
FILE* G_popen_write | ( | struct Popen * | state, |
const char * | program, | ||
const char ** | args | ||
) |
Definition at line 65 of file popen.c.
Referenced by G_open_mail(), and G_open_pager().