|
|
1.1 root 1: /*++
2:
3: Copyright (c) 1992 Microsoft Corporation
4:
5: Module Name:
6:
7: pwd.h
8:
9: Abstract:
10:
11: Defines data types and declares routines necessary for user database
12: access, as required by 1003.1-88 (9.2.2).
13:
14: Author:
15:
16: Matthew Bradburn 28-Jan-1992
17:
18: --*/
19:
20: #ifndef _PWD_
21: #define _PWD_
22:
23: #include <sys/types.h>
24:
25: struct passwd {
26: char *pw_name; /* users login name */
27: uid_t pw_uid; /* user id number */
28: gid_t pw_gid; /* group id number */
29: char *pw_dir; /* home directory */
30: char *pw_shell; /* shell */
31: };
32:
33: struct passwd * _CRTAPI1 getpwuid(uid_t);
34: struct passwd * _CRTAPI1 getpwnam(const char *);
35:
36: #endif /* _PWD_ */
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.