home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / gnu / sh-utils-1.12-src.lha / sh-utils-1.12 / lib / getugroups.c < prev    next >
C/C++ Source or Header  |  1994-09-26  |  2KB  |  75 lines

  1. /* getugroups.c -- return a list of the groups a user is in
  2.    Copyright (C) 1990, 1991 Free Software Foundation.
  3.  
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 2, or (at your option)
  7.    any later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. /* Written by David MacKenzie. */
  19.  
  20. #ifdef HAVE_CONFIG_H
  21. #include <config.h>
  22. #endif
  23.  
  24. #include <sys/types.h>
  25. #include <grp.h>
  26.  
  27. #ifdef HAVE_UNISTD_H
  28. #include <unistd.h>
  29. #endif
  30.  
  31. /* setgrent, getgrent, and endgrent are not specified by POSIX.1,
  32.    so header files might not declare them.
  33.    If you don't have them at all, we can't implement this function.
  34.    You lose!  */
  35. struct group *getgrent ();
  36.  
  37. #if defined(STDC_HEADERS) || defined(HAVE_STRING_H)
  38. #include <string.h>
  39. #else
  40. #include <strings.h>
  41. #endif
  42.  
  43. /* Like `getgroups', but for user USERNAME instead of for
  44.    the current process. */
  45.  
  46. int
  47. getugroups (maxcount, grouplist, username)
  48.      int maxcount;
  49.      GETGROUPS_T *grouplist;
  50.      char *username;
  51. {
  52.   struct group *grp;
  53.   register char **cp;
  54.   register int count = 0;
  55.  
  56.   setgrent ();
  57.   while ((grp = getgrent ()) != 0)
  58.     for (cp = grp->gr_mem; *cp; ++cp)
  59.       if (!strcmp (username, *cp))
  60.     {
  61.       if (maxcount != 0)
  62.         {
  63.           if (count >= maxcount)
  64.         {
  65.           endgrent ();
  66.           return count;
  67.         }
  68.           grouplist[count] = grp->gr_gid;
  69.         }
  70.       count++;
  71.     }
  72.   endgrent ();
  73.   return count;
  74. }
  75.