1grp.h(3HEAD) Headers grp.h(3HEAD)
2
3
4
6 grp.h, grp - group structure
7
9 #include <grp.h>
10
11
13 The <grp.h> header declares the structure group, which includes the
14 following members:
15
16 char *gr_name /* name of the group */
17 gid_t gr_gid /* numerical group ID */
18 char **gr_mem /* pointer to a null-terminated array of
19 character pointers to member names */
20
21
22
23 The gid_t type is defined as described in <sys/types.h> (see
24 types(3HEAD)).
25
27 See attributes(5) for descriptions of the following attributes:
28
29
30
31
32 ┌─────────────────────────────┬─────────────────────────────┐
33 │ ATTRIBUTE TYPE │ ATTRIBUTE VALUE │
34 ├─────────────────────────────┼─────────────────────────────┤
35 │Interface Stability │Standard │
36 └─────────────────────────────┴─────────────────────────────┘
37
39 getgrnam(3C), types.h(3HEAD), attributes(5), standards(5)
40
41
42
43SunOS 5.11 10 Sep 2004 grp.h(3HEAD)