OSDN Git Service

LDP: Update original to LDP v3.79
[linuxjm/LDP_man-pages.git] / original / man3 / putgrent.3
1 .\" Copyright 2003 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
2 .\"
3 .\" %%%LICENSE_START(GPL_NOVERSION_ONELINE)
4 .\" Distributed under GPL
5 .\" %%%LICENSE_END
6 .\"
7 .TH PUTGRENT 3 2015-01-22 "GNU" "Linux Programmer's Manual"
8 .SH NAME
9 putgrent \- write a group database entry to a file
10 .SH SYNOPSIS
11 .BR "#define _GNU_SOURCE" "         /* See feature_test_macros(7) */"
12 .br
13 .B #include <grp.h>
14 .sp
15 .BI "int putgrent(const struct group *" grp ", FILE *" stream );
16 .SH DESCRIPTION
17 The
18 .BR putgrent ()
19 function is the counterpart for
20 .BR fgetgrent (3).
21 The function writes the content of the provided
22 .IR "struct group"
23 into the
24 .IR stream .
25 The list of group members must be NULL-terminated or NULL-initialized.
26 .sp
27 The
28 .IR "struct group"
29 is defined as follows:
30 .sp
31 .in +4n
32 .nf
33 struct group {
34     char   *gr_name;      /* group name */
35     char   *gr_passwd;    /* group password */
36     gid_t   gr_gid;       /* group ID */
37     char  **gr_mem;       /* group members */
38 };
39 .fi
40 .in
41 .SH RETURN VALUE
42 The function returns zero on success, and a nonzero value on error.
43 .SH CONFORMING TO
44 This function is a GNU extension.
45 .SH SEE ALSO
46 .BR fgetgrent (3),
47 .BR getgrent (3),
48 .BR group (5)
49 .SH COLOPHON
50 This page is part of release 3.79 of the Linux
51 .I man-pages
52 project.
53 A description of the project,
54 information about reporting bugs,
55 and the latest version of this page,
56 can be found at
57 \%http://www.kernel.org/doc/man\-pages/.