Pristine Ack-5.5
[Ack-5.5.git] / include / _tail_cc / pwd.h
1 /* $Id: pwd.h,v 1.3 1994/06/24 11:05:26 ceriel Exp $ */
2 /*
3  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
4  * See the copyright notice in the ACK home directory, in the file "Copyright".
5  */
6
7 #ifndef _PWD_H
8 #define _PWD_H
9
10 struct passwd {
11   char *pw_name;                /* login name */
12   int pw_uid;                   /* uid corresponding to the name */
13   int pw_gid;                   /* gid corresponding to the name */
14   char *pw_dir;                 /* user's home directory */
15   char *pw_shell;               /* name of the user's shell */
16
17   /* The following members are not defined by POSIX. */
18   char *pw_passwd;              /* password information */
19   char *pw_gecos;               /* just in case you have a GE 645 around */
20 };
21
22 extern struct passwd *getpwnam();
23 extern struct passwd *getpwuid();
24 extern struct passwd *getpwent();
25
26 #endif /* _PWD_H */