IMPORT_C int popen3(const char *cmd, const char *mode, char **envp, int fids[3]);
Description
Gives access to the client's stdin.
Parameters
const char *cmd |
|
const char *mode |
|
char **envp |
|
int fids |
|
|
Return value
int |
On Success, returns a pointer to an open stream, used to read or write to the pipe. On Failure, return a null pointer. |
|