Pristine Ack-5.5
[Ack-5.5.git] / include / _tail_cc / grp.h
1 /* $Id: grp.h,v 1.3 1994/06/24 11:05:19 ceriel Exp $ */
2 /*
3  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
4  * See the copyright notice in the ACK home directory, in the file "Copyright".
5  */
6
7 #ifndef _GRP_H
8 #define _GRP_H
9
10 struct  group { 
11   char *gr_name;                /* the name of the group */
12   char *gr_passwd;              /* the group passwd */
13   int gr_gid;                   /* the numerical group ID */
14   char **gr_mem;                /* a vector of pointers to the members */
15 };
16
17 extern struct group *getgrgid();
18 extern struct group *getgrnam();
19 extern struct group *getgrent();
20
21 #endif /* _GRP_H */