1
Fork 0
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:
Tim Schumacher 2021-05-26 09:39:57 +02:00 committed by Linus Groh
parent a3b4e43dd8
commit cd970928a0
2 changed files with 21 additions and 0 deletions

View file

@ -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*);