mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-06 19:22:53 +00:00
34 lines
377 B
Markdown
34 lines
377 B
Markdown
## Name
|
|
|
|
clearenv - clear the environment
|
|
|
|
## Synopsis
|
|
|
|
```**c++
|
|
#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
|
|
|
|
```c++
|
|
#include <stdlib.h>
|
|
|
|
int main()
|
|
{
|
|
clearenv();
|
|
putenv("PATH=/bin");
|
|
|
|
return 0;
|
|
}
|
|
```
|