home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / cvs-1.8.7-src.tgz / tar.out / fsf / cvs / macintosh / pwd.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  1KB  |  34 lines

  1. /*********************************************************************
  2. Project    :    GUSI                -    Grand Unified Socket Interface
  3. File        :    pwd.h            -    Provide mission header ioctl.h for CodeWarrior
  4. Author    :    Matthias Neeracher
  5. Language    :    MPW C/C++
  6. $Log: pwd.h,v $
  7. Revision 1.1  1996/07/26 20:08:29  kingdon
  8. Check in new macintosh directory from Mike Ladwig.  I believe that this
  9. checkin contains exactly the tarfile he sent to me, with the exception
  10. of the files SIOUX.c SIOUXGlobals.h SIOUXMenus.h SIOUXWindows.h which
  11. are copyright Metrowerks and which we therefore cannot distribute.
  12.  
  13. *********************************************************************/
  14.  
  15. #include <sys/types.h>
  16.  
  17. struct  group { /* see getgrent(3) */
  18.         char    *gr_name;
  19.         char    *gr_passwd;
  20.         gid_t   gr_gid;
  21.         char    **gr_mem;
  22. };
  23.  
  24. struct passwd {
  25.         char    *pw_name;
  26.         char    *pw_passwd;
  27.         uid_t   pw_uid;
  28.         gid_t   pw_gid;
  29.         char    *pw_age;
  30.         char    *pw_comment;
  31.         char    *pw_gecos;
  32.         char    *pw_dir;
  33.         char    *pw_shell;
  34. };