termios.3: wfix
[man-pages.git] / man3 / fgetgrent.3
blobb28d8b76d1329b4430e9fe1e7ffba7b1ae5a4ced
1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2 .\"
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.
7 .\"
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.
12 .\"
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
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .\" References consulted:
26 .\"     Linux libc source code
27 .\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
28 .\"     386BSD man pages
29 .\" Modified Sat Jul 24 19:38:44 1993 by Rik Faith (faith@cs.unc.edu)
30 .TH FGETGRENT 3  2021-03-22 "GNU" "Linux Programmer's Manual"
31 .SH NAME
32 fgetgrent \- get group file entry
33 .SH SYNOPSIS
34 .nf
35 .B #include <stdio.h>
36 .B #include <sys/types.h>
37 .B #include <grp.h>
38 .PP
39 .BI "struct group *fgetgrent(FILE *" stream );
40 .fi
41 .PP
42 .RS -4
43 Feature Test Macro Requirements for glibc (see
44 .BR feature_test_macros (7)):
45 .RE
46 .PP
47 .BR fgetgrent ():
48 .nf
49     Since glibc 2.19:
50         _DEFAULT_SOURCE
51     Glibc 2.19 and earlier:
52         _SVID_SOURCE
53 .fi
54 .SH DESCRIPTION
55 The
56 .BR fgetgrent ()
57 function returns a pointer to a structure containing
58 the group information from the file referred to by
59 .IR stream .
60 The first time it is called
61 it returns the first entry; thereafter, it returns successive entries.
62 The file referred to by
63 .I stream
64 must have the same format as
65 .I /etc/group
66 (see
67 .BR group (5)).
68 .PP
69 The \fIgroup\fP structure is defined in \fI<grp.h>\fP as follows:
70 .PP
71 .in +4n
72 .EX
73 struct group {
74     char   *gr_name;        /* group name */
75     char   *gr_passwd;      /* group password */
76     gid_t   gr_gid;         /* group ID */
77     char  **gr_mem;         /* NULL\-terminated array of pointers
78                                to names of group members */
80 .EE
81 .in
82 .SH RETURN VALUE
83 The
84 .BR fgetgrent ()
85 function returns a pointer to a
86 .I group
87 structure,
88 or NULL if there are no more entries or an error occurs.
89 In the event of an error,
90 .I errno
91 is set to indicate the error.
92 .SH ERRORS
93 .TP
94 .B ENOMEM
95 Insufficient memory to allocate
96 .I group
97 structure.
98 .SH ATTRIBUTES
99 For an explanation of the terms used in this section, see
100 .BR attributes (7).
101 .ad l
104 allbox;
105 lbx lb lb
106 l l l.
107 Interface       Attribute       Value
109 .BR fgetgrent ()
110 T}      Thread safety   MT-Unsafe race:fgetgrent
114 .sp 1
115 .\" FIXME The marking is different from that in the glibc manual,
116 .\" which has:
118 .\"    fgetgrent: MT-Unsafe race:fgrent
120 .\" We think race:fgrent in glibc may be hard for users to understand,
121 .\" and have sent a patch to the GNU libc community for changing it to
122 .\" race:fgetgrent, however, something about the copyright impeded the
123 .\" progress.
124 .SH CONFORMING TO
125 SVr4.
126 .SH SEE ALSO
127 .BR endgrent (3),
128 .BR fgetgrent_r (3),
129 .BR fopen (3),
130 .BR getgrent (3),
131 .BR getgrgid (3),
132 .BR getgrnam (3),
133 .BR putgrent (3),
134 .BR setgrent (3),
135 .BR group (5)