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:
parent
432b2aed67
commit
8a09895bc1
2 changed files with 86 additions and 38 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue