Imported tab->space correction by redhat
[infodrom/manpages-de] / man3 / getpwent.3
1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2 .\"
3 .\" Permission is granted to make and distribute verbatim copies of this
4 .\" manual provided the copyright notice and this permission notice are
5 .\" preserved on all copies.
6 .\"
7 .\" Permission is granted to copy and distribute modified versions of this
8 .\" manual under the conditions for verbatim copying, provided that the
9 .\" entire resulting derived work is distributed under the terms of a
10 .\" permission notice identical to this one
11 .\" 
12 .\" Since the Linux kernel and libraries are constantly changing, this
13 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
14 .\" responsibility for errors or omissions, or for damages resulting from
15 .\" the use of the information contained herein.  The author(s) may not
16 .\" have taken the same level of care in the production of this manual,
17 .\" which is licensed free of charge, as they might when working
18 .\" professionally.
19 .\" 
20 .\" Formatted or processed versions of this manual, if unaccompanied by
21 .\" the source, must acknowledge the copyright and authors of this work.
22 .\"
23 .\" References consulted:
24 .\"     Linux libc source code
25 .\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
26 .\"     386BSD man pages
27 .\"
28 .\" Modified Sat Jul 24 19:22:14 1993 by Rik Faith (faith@cs.unc.edu)
29 .\" Modified Mon May 27 21:37:47 1996 by Martin Schulze (joey@linux.de)
30 .\" Translated into german by Martin Schulze (joey@finlandia.infodrom.north.de)
31 .\"
32 .TH GETPWENT 3 "27. Mai 1996" "GNU" "Bibliotheksfunktionen"
33 .SH BEZEICHNUNG
34 getpwent, setpwent, endpwent \- arbeite mit Passworteintrag
35 .SH "ÜBERSICHT"
36 .nf
37 .B #include <pwd.h>
38 .B #include <sys/types.h>
39 .sp
40 .B struct passwd *getpwent(void);
41 .sp
42 .B void setpwent(void);
43 .sp
44 .B void endpwent(void);
45 .fi
46 .SH BESCHREIBUNG
47 Die Funktion
48 .B getpwent()
49 gibt einen Zeiger auf eine Struktur zurück, die den Inhalt einer
50 Zeile von
51 .I /etc/passwd
52 repräsentiert.  Beim ersten Aufruf wird der erste Eintrag
53 zurückgegeben, bei weiteren die nachfolgenden.
54
55 Die Funktion
56 .B setpwent()
57 setzt den Dateizeiger auf den Anfang der Passwortdatei
58 .IR /etc/passwd .
59
60 Die Funktion
61 .B endpwent()
62 schließt
63 .IR /etc/passwd .
64
65 Die Struktur
66 .I passwd
67 ist in
68 .I <pwd.h>
69 wie folgt definiert:
70 .sp
71 .RS
72 .nf
73 .ta 8n 16n 32n
74 struct passwd {
75         char    *pw_name;               /* Benutzername */
76         char    *pw_passwd;             /* Passwort */
77         uid_t   pw_uid;                 /* User ID */
78         gid_t   pw_gid;                 /* Group ID */
79         char    *pw_gecos;              /* Name bzw. GECOS */
80         char    *pw_dir;                /* Home-Verzeichnis */
81         char    *pw_shell;              /* Loginshell */
82 };
83 .ta
84 .fi
85 .RE
86 .SH "RÜCKGABEWERT"
87 Die Funktion
88 .B getpwent()
89 gibt die
90 .IR passwd \-struktur
91 zurück oder NULL, wenn keine weiteren Einträge vorhanden sind. 
92 .SH FEHLER
93 .TP
94 .B ENOMEM
95 Es ist nicht ausreichend Speicher vorhanden, um Speicher für eine
96 .IR passwd \-Struktur
97 zu alloziieren.
98 .SH DATEIEN
99 .TP
100 .I /etc/passwd
101 Passwortdatenbank
102 .SH "KONFORM ZU"
103 SVID 3, BSD 4.3
104 .SH "SIEHE AUCH"
105 .BR fgetpwent (3),
106 .BR getpwnam (3),
107 .BR getpwuid (3),
108 .BR getpw (3),
109 .BR putpwent (3),
110 .BR passwd (5).