mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 12:12:45 +00:00 
			
		
		
		
	
		
			
				
	
	
	
	
		
			377 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			377 B
		
	
	
	
	
	
	
	
Name
clearenv - clear the environment
Synopsis
#include <stdlib.h>
clearenv();
Description
Clears all environment variables and sets the external
variable environ to NULL.
Return value
The clearenv() function returns zero.
Examples
#include <stdlib.h>
int main()
{
    clearenv();
    putenv("PATH=/bin");
    return 0;
}
