|
|
1.1 root 1: /* (-lgl
2: * COHERENT Version 3.0
3: * Copyright (c) 1982, 1993 by Mark Williams Company.
4: * All rights reserved. May not be copied without permission.
5: -lgl) */
6: #ifndef __PWD_H__
7: #define __PWD_H__
8:
9: struct passwd
10: {
11: char *pw_name; /* User name */
12: char *pw_passwd; /* Encrypted password */
13: int pw_uid; /* User id */
14: int pw_gid; /* Group id */
15: int pw_quota; /* FIle space quota */
16: char *pw_comment; /* Comments */
17: char *pw_gecos; /* Gecos box number */
18: char *pw_dir; /* Working directory */
19: char *pw_shell; /* Shell */
20: };
21:
22: struct passwd *getpwent();
23: struct passwd *getpwuid();
24: struct passwd *getpwnam();
25:
26: #endif
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.