home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-19.28-src.tgz / tar.out / fsf / emacs / unixlib / include / grp.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  296b  |  13 lines

  1. #ifndef _GRP_H
  2. #define _GRP_H
  3.  
  4. struct group {
  5.   char *gr_name;        /* name of the group */
  6.   char *gr_passwd;        /* encrypted password of the group */
  7.   gid_t gr_gid;            /* numerical group ID */
  8.   char **gr_mem;        /* null-terminated array of pointers to the
  9.                    individual member names */
  10. };
  11.  
  12. #endif
  13.