1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 17:37:34 +00:00

LibC: Implement getpwent_r

Refs #15965.
This commit is contained in:
Gunnar Beutner 2022-11-08 07:17:23 +01:00 committed by Andreas Kling
parent 288d75fdab
commit 7442cfb507
2 changed files with 54 additions and 25 deletions

View file

@ -23,6 +23,7 @@ struct passwd {
};
struct passwd* getpwent(void);
int getpwent_r(struct passwd*, char*, size_t, struct passwd**);
void setpwent(void);
void endpwent(void);
struct passwd* getpwnam(char const* name);