OrionLibC
Barry Using POSIX names for structs 11f4683 (3 years, 3 months ago)
#ifndef _GRP_H
#define _GRP_H
/* Structure of a group entry */
typedef struct group {
char *gr_name;
gid_t gr_gid;
char **gr_mem;
} Group;
Group *getgrnam(const char *name);
Group *getgrgid(gid_t gid);
#endif