home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
341b.lha
/
uucp1_v1.03d
/
src
/
include
/
pwd.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-01-28
|
540b
|
27 lines
/*
* PWD.H
*
* (C) Copyright 1989-1990 by Matthew Dillon, All Rights Reserved.
*/
struct passwd {
char *pw_name;
char *pw_passwd;
long pw_uid;
long pw_gid;
long pw_quota;
char *pw_comment;
char *pw_gecos;
char *pw_dir;
char *pw_shell;
char *pw_shell_arg0; /* arg0 broken out from pw_shell */
char *pw_shell_argn; /* remaining args from pw_shell */
};
extern struct passwd *getpwuid();
extern struct passwd *getpwnam();
extern char *PasswdFile;