FENIX_libc/include/grp.h

21 lines
459 B
C
Raw Normal View History

2020-12-09 00:08:54 +00:00
#ifndef _GRP_H
#define _GRP_H
#include <types/gid_t.h>
#include <types/size_t.h>
struct group {
char * gr_name;
gid_t gr_gid;
char ** gr_mem;
};
void endgrent(void);
struct group * getgrent(void);
struct group * getgrgid(gid_t);
int getgrgid_r(gid_t, struct group *, char *, size_t, struct group **);
struct group * getgrnam(const char *);
int getgrnam_r(const char *, struct group *, char *, size_t, struct group **);
void setgrent(void);
#endif