home *** CD-ROM | disk | FTP | other *** search
/ back2roots/padua / padua.7z / padua / uucp / auucp+-1.02 / fuucp_plus_src.lzh / include / pwd.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-11-21  |  644 b   |  29 lines

  1.  
  2. /*
  3.  *  PWD.H
  4.  *
  5.  *  (C) Copyright 1989-1990 by Matthew Dillon,  All Rights Reserved.
  6.  *
  7.  *  $Header: Beta:src/uucp/src/include/RCS/pwd.h,v 1.1 90/02/02 11:40:16 dillon Exp Locker: dillon $
  8.  */
  9.  
  10. struct passwd {
  11.     char    *pw_name;
  12.     char    *pw_passwd;
  13.     long    pw_uid;
  14.     long    pw_gid;
  15.     long    pw_quota;
  16.     char    *pw_comment;
  17.     char    *pw_gecos;
  18.     char    *pw_dir;
  19.     char    *pw_shell;
  20.     char    *pw_shell_arg0;    /*  arg0 broken out from pw_shell   */
  21.     char    *pw_shell_argn;    /*  remaining args from pw_shell    */
  22. };
  23.  
  24. extern struct passwd *getpwuid();
  25. extern struct passwd *getpwnam();
  26.  
  27. extern char *PasswdFile;
  28.  
  29.