home *** CD-ROM | disk | FTP | other *** search
-
- /*
- * PWD.H
- *
- * (C) Copyright 1989-1990 by Matthew Dillon, All Rights Reserved.
- *
- * $Header: Beta:src/uucp/src/include/RCS/pwd.h,v 1.1 90/02/02 11:40:16 dillon Exp Locker: dillon $
- */
-
- struct passwd {
- char *pw_name;
- char *pw_passwd;
- long pw_uid;
- long pw_gid;
- long pw_quota;
- char *pw_comment;
- char *pw_gecos;
- char *pw_dir;
- char *pw_shell;
- char *pw_shell_arg0; /* arg0 broken out from pw_shell */
- char *pw_shell_argn; /* remaining args from pw_shell */
- };
-
- extern struct passwd *getpwuid();
- extern struct passwd *getpwnam();
-
- extern char *PasswdFile;
-
-