2005-04-21 16:53:53 +02:00
|
|
|
/* The <pwd.h> header defines the items in the password file. */
|
|
|
|
|
|
|
|
#ifndef _PWD_H
|
|
|
|
#define _PWD_H
|
|
|
|
|
|
|
|
#ifndef _TYPES_H
|
2009-11-06 09:46:22 +01:00
|
|
|
#include <minix/types.h>
|
2005-04-21 16:53:53 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
struct passwd {
|
|
|
|
char *pw_name; /* login name */
|
|
|
|
uid_t pw_uid; /* uid corresponding to the name */
|
|
|
|
gid_t pw_gid; /* gid corresponding to the name */
|
|
|
|
char *pw_dir; /* user's home directory */
|
|
|
|
char *pw_shell; /* name of the user's shell */
|
|
|
|
|
|
|
|
/* The following members are not defined by POSIX. */
|
|
|
|
char *pw_passwd; /* password information */
|
|
|
|
char *pw_gecos; /* just in case you have a GE 645 around */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Function Prototypes. */
|
|
|
|
_PROTOTYPE( struct passwd *getpwnam, (const char *_name) );
|
2010-04-13 12:58:41 +02:00
|
|
|
_PROTOTYPE( struct passwd *getpwuid, (uid_t _uid) );
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
#ifdef _MINIX
|
|
|
|
_PROTOTYPE( void endpwent, (void) );
|
|
|
|
_PROTOTYPE( struct passwd *getpwent, (void) );
|
|
|
|
_PROTOTYPE( int setpwent, (void) );
|
|
|
|
_PROTOTYPE( void setpwfile, (const char *_file) );
|
2010-06-09 14:53:09 +02:00
|
|
|
_PROTOTYPE( const char *user_from_uid, (uid_t, int) );
|
2005-04-21 16:53:53 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _PWD_H */
|