1 2 3 4 5 6 7 8 9 10
#pragma once #include "sys/types.h" struct group { char *gr_name; gid_t gr_gid; char *gr_passwd; char **gr_mem; };