![]() |
![]() |
![]() |
![]() |
Remove an environment variable
#include <stdlib.h> void unsetenv( const char* name );
libc
The unsetenv() function removes the environment variable named name from the process's environment.
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | No |
Signal handler | Yes |
Thread | Yes |
The unsetenv() function manipulates the environment pointed to by the global environ variable.
clearenv(), getenv(), putenv(), setenv()
![]() |
![]() |
![]() |
![]() |