home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Headers / bsd / acc.h next >
C/C++ Source or Header  |  1990-01-22  |  607b  |  27 lines

  1. /*
  2.  *  see getacent(3)
  3.  *
  4.  **********************************************************************
  5.  * HISTORY
  6.  * 11-Oct-85  Glenn Marcy (gm0w) at Carnegie-Mellon University
  7.  *    Add external declarations for account routines.  Change
  8.  *    ac_passwd to ac_attrs for new accounting file information.
  9.  *
  10.  **********************************************************************
  11.  */
  12.  
  13. struct    account
  14. {
  15.     char    *ac_name;
  16.     char    **ac_attrs;
  17.     int     ac_uid;
  18.     int     ac_aid;
  19.     char    *ac_created;
  20.     char    *ac_expires;
  21.     char    *ac_sponsor;
  22.     time_t     ac_ctime;
  23.     time_t     ac_xtime;
  24. };
  25.  
  26. struct account *getacent(), *getacauid(), *getacanam();
  27.