home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / TELECOM / stg_v4.lzh / grp.h < prev    next >
C/C++ Source or Header  |  1994-11-11  |  295b  |  24 lines

  1. /* 
  2.  * group structure
  3.  *
  4.  * 92/10/27 StG initial version coded to (losely) match unix
  5. */ 
  6.  
  7. #ifdef _UNIX
  8. #include <grp.h>
  9. #else
  10.  
  11. struct group
  12. {
  13.     char *gr_name;
  14.     char *gr_passwd;
  15.     int gr_gid;
  16.     char **gr_mem;
  17. };
  18.  
  19. struct group *getgrent();
  20. struct group *getgrnam();
  21.  
  22. #endif
  23.  
  24.