OrionLibC
Barry Importing existing Orion LibC 03048a9 (3 years, 2 months ago)
#ifndef _GRP_H
#define _GRP_H
/* Structure of a group entry */
typedef struct group {
char *name;
gid_t gid;
char **members;
} Group;
Group *getgrname(const char *name);
Group *getgrgid(gid_t gid);
#endif