BarryServer : Git

All the code for all my projects
// BarryServer : Git / OrionLibC / blob / 03048a95d88cc7a78171393371f5c22a0250a014 / include / grp.h

// Related

OrionLibC

Barry Importing existing Orion LibC 03048a9 (2 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