home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 1
/
FFMCD01.bin
/
useful
/
dist
/
gnu
/
emacs
/
unix.lha
/
unix
/
include
/
grp.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-07-09
|
296 b
|
13 lines
#ifndef _GRP_H
#define _GRP_H
struct group {
char *gr_name; /* name of the group */
char *gr_passwd; /* encrypted password of the group */
gid_t gr_gid; /* numerical group ID */
char **gr_mem; /* null-terminated array of pointers to the
individual member names */
};
#endif