Line | |
---|
1 | /* The <pwd.h> header defines the items in the password file. */
|
---|
2 |
|
---|
3 | #ifndef _PWD_H
|
---|
4 | #define _PWD_H
|
---|
5 |
|
---|
6 | #ifndef _TYPES_H
|
---|
7 | #include <sys/types.h>
|
---|
8 | #endif
|
---|
9 |
|
---|
10 | struct passwd {
|
---|
11 | char *pw_name; /* login name */
|
---|
12 | uid_t pw_uid; /* uid corresponding to the name */
|
---|
13 | gid_t 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 | /* Function Prototypes. */
|
---|
23 | _PROTOTYPE( struct passwd *getpwnam, (const char *_name) );
|
---|
24 | _PROTOTYPE( struct passwd *getpwuid, (_mnx_Uid_t _uid) );
|
---|
25 |
|
---|
26 | #ifdef _MINIX
|
---|
27 | _PROTOTYPE( void endpwent, (void) );
|
---|
28 | _PROTOTYPE( struct passwd *getpwent, (void) );
|
---|
29 | _PROTOTYPE( int setpwent, (void) );
|
---|
30 | _PROTOTYPE( void setpwfile, (const char *_file) );
|
---|
31 | #endif
|
---|
32 |
|
---|
33 | #endif /* _PWD_H */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.