mirror of
https://github.com/RGBCube/serenity
synced 2025-06-01 11:18:13 +00:00
LibC: stdlib: Add clearenv() function
This commit is contained in:
parent
3436317c08
commit
853664bd3c
4 changed files with 46 additions and 1 deletions
|
@ -47,6 +47,7 @@ __attribute__((alloc_size(2))) void* realloc(void* ptr, size_t);
|
|||
char* getenv(const char* name);
|
||||
int putenv(char*);
|
||||
int unsetenv(const char*);
|
||||
int clearenv(void);
|
||||
int setenv(const char* name, const char* value, int overwrite);
|
||||
int atoi(const char*);
|
||||
long atol(const char*);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue