1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date. The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein. The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
25 .\" References consulted:
26 .\" Linux libc source code
27 .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
29 .\" Modified Sat Jul 24 19:38:44 1993 by Rik Faith (faith@cs.unc.edu)
30 .TH FGETGRENT 3 2016-03-15 "GNU" "Linux Programmer's Manual"
32 fgetgrent \- get group file entry
36 .B #include <sys/types.h>
39 .BI "struct group *fgetgrent(FILE *" stream );
43 Feature Test Macro Requirements for glibc (see
44 .BR feature_test_macros (7)):
50 Glibc 2.19 and earlier:
55 function returns a pointer to a structure containing
56 the group information from the file referred to by
58 The first time it is called
59 it returns the first entry; thereafter, it returns successive entries.
60 The file referred to by
62 must have the same format as
67 The \fIgroup\fP structure is defined in \fI<grp.h>\fP as follows:
72 char *gr_name; /* group name */
73 char *gr_passwd; /* group password */
74 gid_t gr_gid; /* group ID */
75 char **gr_mem; /* NULL-terminated array of pointers
76 to names of group members */
83 function returns a pointer to a
86 or NULL if there are no more entries or an error occurs.
87 In the event of an error,
89 is set to indicate the cause.
93 Insufficient memory to allocate
97 For an explanation of the terms used in this section, see
103 Interface Attribute Value
106 T} Thread safety MT-Unsafe race:fgetgrent
108 .\" FIXME The marking is different from that in the glibc manual,
111 .\" fgetgrent: MT-Unsafe race:fgrent
113 .\" We think race:fgrent in glibc may be hard for users to understand,
114 .\" and have sent a patch to the GNU libc community for changing it to
115 .\" race:fgetgrent, however, something about the copyright impeded the