GRASS GIS 8 Programmer's Manual  8.4.0dev(2024)-f8115df121
defs/spawn.h
Go to the documentation of this file.
1 #ifndef GRASS_SPAWNDEFS_H
2 #define GRASS_SPAWNDEFS_H
3 
4 extern int G_spawn(const char *command, ...);
5 extern int G_vspawn_ex(const char *command, const char **args);
6 extern int G_spawn_ex(const char *command, ...);
7 extern int G_wait(int i_pid);
8 
9 #endif
int G_vspawn_ex(const char *command, const char **args)
Spawn new process based on command.
Definition: spawn.c:876
int G_wait(int i_pid)
Definition: spawn.c:949
int G_spawn(const char *command,...)
Spawn new process based on command.
Definition: spawn.c:919
int G_spawn_ex(const char *command,...)
Spawn new process based on command.
Definition: spawn.c:897