FGETGRENTSection: Linux Programmer's Manual (3)Updated: 1993-04-04 |
FGETGRENTSection: Linux Programmer's Manual (3)Updated: 1993-04-04 |
#include <stdio.h> #include <sys/types.h> #include <grp.h> struct group *fgetgrent(FILE *stream);
The group structure is defined in <grp.h> as follows:
struct group {
char *gr_name; /* group name */
char *gr_passwd; /* group password */
gid_t gr_gid; /* group id */
char **gr_mem; /* group members */
};