mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 05:27:45 +00:00
LibC: Implement getprogname and setprogname
This commit is contained in:
parent
a3b4e43dd8
commit
cd970928a0
2 changed files with 21 additions and 0 deletions
|
@ -31,6 +31,8 @@ int putenv(char*);
|
|||
int unsetenv(const char*);
|
||||
int clearenv(void);
|
||||
int setenv(const char* name, const char* value, int overwrite);
|
||||
const char* getprogname();
|
||||
void setprogname(const char*);
|
||||
int atoi(const char*);
|
||||
long atol(const char*);
|
||||
long long atoll(const char*);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue