NAME | SYNOPSIS | API RESTRICTIONS | DESCRIPTION | RETURN VALUES | STANDARDS | NOTE | ATTRIBUTES
$(NUCLEUS_DIR)/lib/classix/libsys.s.a #include <stdlib.h>char * getenv(const char * name);
The function or functions documented here may not be used safely in all application contexts with all APIs provided in the ChorusOS 5.0 product.
See API(5FEA) for details.
These functions set, unset and fetch environment variables from the host environment list. For compatibility with differing environment conventions, the name and value arguments given may be appended and prepended, respectively, using an 'equals' sign. The getenv() function obtains the current value of the environment variable, name If the variable name is not in the current environment, a null pointer is returned.
The setenv() function inserts or resets the environment variable name in the current environment list. If the variable name does not exist in the list, it is inserted with the given value . If the variable does exist, the overwrite argument is tested; if overwrite is zero, the variable is not reset, otherwise it is reset to the given value .
The putenv() function takes an argument of the form name=value and is equivalent to setenv(name, value, 1) .
The unsetenv() function deletes all instances of the variable name pointed to by name from the list.
The setenv() and putenv() functions return zero if successful; otherwise -1 is returned. The setenv() or putenv() functions fail if they were unable to allocate memory for the environment.
The getenv() function conforms to ANSI-C .
These functions are reentrant, but the environment is global to the actor.
See attributes(5) for descriptions of the following attributes:
ATTRIBUTE TYPE | ATTRIBUTE VALUE |
---|---|
Interface Stability | Evolving |
NAME | SYNOPSIS | API RESTRICTIONS | DESCRIPTION | RETURN VALUES | STANDARDS | NOTE | ATTRIBUTES