Returns an environment value.
Description |
 |
The getenv() function takes a string, name, and searches for a matching name in the environment list (in environ) associated with the calling process.
If a match to name is found, getenv() returns a pointer to the value portion of that string. The value is terminated by a null character. If a matching name is not found, getenv() returns a NULL pointer but does not modify the current value of errno.
The environment list contains strings in the form name=value. If more than one string has the same name, getenv() returns the value for the first matching name found. The length of name is limited by {ARG_MAX} as defined in <limits.h>.