Copyright (C) 2000-2012 |
Manpages SETENVSection: Linux Programmer's Manual (3 )Updated: 1993-04-04 Index Return to Main Contents 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 ALSOgetenv(3), putenv(3), environ(7)
IndexThis document was created by man2html, using the manual pages. Time: 00:47:19 GMT, January 21, 2025 |