home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
emacs-19.28-src.tgz
/
tar.out
/
fsf
/
emacs
/
unixlib
/
include
/
grp.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-09-28
|
296b
|
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