Files
RedBear-OS/tests/grp/gr_iter.c
T
Jacob Schneider 2f887ae434 Groups
2023-08-21 12:05:16 +00:00

10 lines
255 B
C

#include <stdio.h>
#include <grp.h>
#include <string.h>
int main(int argc, char** argv) {
printf("getgrent\n");
for (struct group* grp = getgrent(); grp != NULL; grp = getgrent())
printf(" %s = %d\n", grp->gr_name, grp->gr_gid);
}