1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
#include <sys/types.h> #include <grp.h> #include <string.h> #include "_grp.h" struct group * getgrnam(const char * name) { struct group *grp = NULL; setgrent(); while ((grp = getgrent()) != NULL) { if (strcmp(name, grp->gr_name) == 0) { endgrent(); return grp; } } endgrent(); return NULL; } /* POSIX(1) */