Query: setenv
OS: redhat
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
SETENV(3) Linux Programmer's Manual SETENV(3)NAMEsetenv - change or add an environment variableSYNOPSIS#include <stdlib.h> int setenv(const char *name, const char *value, int overwrite); void unsetenv(const char *name);DESCRIPTIONThe setenv() function adds the variable name to the environment with the value value, if name does not already exist. If name does exist in the environment, then its value is changed to value if overwrite is non-zero; if overwrite is zero, then the value of name is not changed. The unsetenv() function deletes the variable name from the environment.RETURN VALUEThe setenv() function returns zero on success, or -1 if there was insufficient space in the environment.CONFORMING TOBSD 4.3SEE ALSOclearenv(3), getenv(3), putenv(3), environ(5)BSD1993-04-04 SETENV(3)
Related Man Pages |
---|
unsetenv(3) - centos |
getenv(3) - freebsd |
setenv(3) - suse |
unsetenv(3) - osx |
putenv(3) - freebsd |
Similar Topics in the Unix Linux Community |
---|
setting DISPLAY when logging in |
DISPLAY settiing |
setenv Question |
setenv in script |
setenv function in C programming |