IMPORT_C int system(const char *_string);
Description
Execute command.
Parameters
const char *_string |
Null-terminated string containing the system command to be executed.
|
|
Return value
int |
On Success, the command interpreter returns an adequate value; generally 0 indicates that the action performed by the command
interpreter terminated with no errors. On Failure, return -1.
|
|