#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