home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 2 / goldfish_vol2_cd1.bin / files / comm / mail / smail / src / rcs / pwd.h,v < prev    next >
Text File  |  1993-12-21  |  649b  |  46 lines

  1. head    1.1;
  2. access;
  3. symbols
  4.     C_1:1.1;
  5. locks; strict;
  6. comment    @ * @;
  7.  
  8.  
  9. 1.1
  10. date    93.09.08.16.25.48;    author Aussem;    state Exp;
  11. branches;
  12. next    ;
  13.  
  14.  
  15. desc
  16. @passwd structures
  17. @
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @
  26. /*
  27.  *  PWD.H
  28.  *
  29.  *  (C) Copyright 1989-1990 by Matthew Dillon,  All Rights Reserved.
  30.  */
  31.  
  32. struct passwd {
  33.     char    *pw_name;
  34.     char    *pw_passwd;
  35.     long    pw_uid;
  36.     long    pw_gid;
  37.     long    pw_quota;
  38.     char    *pw_comment;
  39.     char    *pw_gecos;
  40.     char    *pw_dir;
  41.     char    *pw_shell;
  42.     char    *pw_shell_arg0;    /*  arg0 broken out from pw_shell   */
  43.     char    *pw_shell_argn;    /*  remaining args from pw_shell    */
  44. };
  45. @
  46.