home *** CD-ROM | disk | FTP | other *** search
/ back2roots/padua / padua.7z / padua / uucp / duucp-1.17 / AU-117b4-src.lha / src / include / pwd.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-24  |  581 b   |  24 lines

  1. /*
  2.  *  PWD.H
  3.  *
  4.  *  (C) Copyright 1989-1990 by Matthew Dillon,    All Rights Reserved.
  5.  */
  6.  
  7. struct passwd {
  8.     char    *pw_name;
  9.     char    *pw_passwd;
  10.     long    pw_uid;
  11.     long    pw_gid;
  12.     long    pw_quota;
  13.     char    *pw_comment;
  14.     char    *pw_gecos;
  15.     char    *pw_dir;
  16.     char    *pw_shell;
  17.     char    *pw_shell_arg0;    /*  arg0 broken out from pw_shell   */
  18.     char    *pw_shell_argn;    /*  remaining args from pw_shell    */
  19.     char    *pw_real_name;    /*  the finger-info in getty:passwd */
  20. };
  21.  
  22. extern struct passwd *getpwnam (const char *);
  23. extern char *PasswdFile;
  24.