mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-06 03:02:55 +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;
}