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

LibC: Implement getgrent_r

This commit is contained in:
ne0ndrag0n 2022-11-14 13:41:31 -05:00 committed by Andreas Kling
parent 432b2aed67
commit 8a09895bc1
2 changed files with 86 additions and 38 deletions

View file

@ -21,6 +21,7 @@ struct group {
};
struct group* getgrent(void);
int getgrent_r(struct group* group_buf, char* buffer, size_t buffer_size, struct group** group_entry_ptr);
void setgrent(void);
void endgrent(void);
struct group* getgrnam(char const* name);