#include #include #include #include int main(int argc, char const *argv[]) { if (argc!=2){ puts("ERROR_usage: [group-name]"); return EXIT_FAILURE; } int compteur=0; struct group *recupInfoGroupe; recupInfoGroupe=getgrnam(argv[1]); for(compteur=0;recupInfoGroupe->gr_mem[compteur]!=NULL;compteur++){ printf("%s\n", recupInfoGroupe->gr_mem[compteur]); } return EXIT_SUCCESS; }