IMPORT_C char *getenv(const char *_string);
Description
Get string from environment.
Parameters
const char *_string |
Null-terminated string containing the name of the requested variable. |
|
Return value
char * |
A null-terminated string with the value of the requested environment variable or NULL if that environment variable does not exist. |
|