1PUTPWENT(3)                Linux Programmer's Manual               PUTPWENT(3)
2
3
4

NAME

6       putpwent - write a password file entry
7

SYNOPSIS

9       #include <stdio.h>
10       #include <sys/types.h>
11       #include <pwd.h>
12
13       int putpwent(const struct passwd *p, FILE *stream);
14
15   Feature Test Macro Requirements for glibc (see feature_test_macros(7)):
16
17       putpwent():
18           Since glibc 2.19:
19               _DEFAULT_SOURCE
20           Glibc 2.19 and earlier:
21               _SVID_SOURCE
22

DESCRIPTION

24       The putpwent() function writes a password entry from the structure p in
25       the file associated with stream.
26
27       The passwd structure is defined in <pwd.h> as follows:
28
29           struct passwd {
30               char    *pw_name;        /* username */
31               char    *pw_passwd;      /* user password */
32               uid_t    pw_uid;         /* user ID */
33               gid_t    pw_gid;         /* group ID */
34               char    *pw_gecos;       /* real name */
35               char    *pw_dir;         /* home directory */
36               char    *pw_shell;       /* shell program */
37           };
38

RETURN VALUE

40       The putpwent() function returns 0 on success, or -1 if an error occurs.
41       In the event of an error, errno is set to indicate the cause.
42

ERRORS

44       EINVAL Invalid (NULL) argument given.
45

ATTRIBUTES

47       For   an   explanation   of   the  terms  used  in  this  section,  see
48       attributes(7).
49
50       ┌───────────┬───────────────┬────────────────┐
51Interface  Attribute     Value          
52       ├───────────┼───────────────┼────────────────┤
53putpwent() │ Thread safety │ MT-Safe locale │
54       └───────────┴───────────────┴────────────────┘
55

CONFORMING TO

57       SVr4.
58

SEE ALSO

60       endpwent(3), fgetpwent(3), getpw(3),  getpwent(3),  getpwnam(3),  getp‐
61       wuid(3), setpwent(3)
62

COLOPHON

64       This  page  is  part of release 5.04 of the Linux man-pages project.  A
65       description of the project, information about reporting bugs,  and  the
66       latest     version     of     this    page,    can    be    found    at
67       https://www.kernel.org/doc/man-pages/.
68
69
70
71GNU                               2017-09-15                       PUTPWENT(3)
Impressum