Provided by:
manpages-de-dev_0.10-1_all 
BEZEICHNUNG
fgetpwent - get password file entry
"UBERSICHT
#include <stdio.h>
#include <sys/types.h>
#include <pwd.h>
struct passwd *fgetpwent(FILE *stream);
Mit Glibc erforderliche Makros (siehe feature_test_macros(7)):
fgetpwent(): _SVID_SOURCE
BESCHREIBUNG
The fgetpwent() function returns a pointer to a structure containing
the broken out fields of a line in the file stream. The first time it
is called it returns the first entry; thereafter, it returns successive
entries. The file referred to by stream must have the same format as
/etc/passwd (see passwd(5)).
Die Struktur passwd ist in <pwd.h> wie folgt definiert:
struct passwd {
char *pw_name; /* username */
char *pw_passwd; /* user password */
uid_t pw_uid; /* user ID */
gid_t pw_gid; /* group ID */
char *pw_gecos; /* real name */
char *pw_dir; /* home directory */
char *pw_shell; /* shell program */
};
R"UCKGABEWERT
The fgetpwent() function returns a pointer to a passwd structure, or
NULL if there are no more entries or an error occurs.
FEHLER
ENOMEM Der Speicher reicht nicht aus, um ihn fur die Struktur passwd zu
reservieren.
DATEIEN
/etc/passwd
Passwortdatenbank
KONFORM ZU
SVr4.
SIEHE AUCH
endpwent(3), fgetpwent_r(3), fopen(3), getpw(3), getpwent(3),
getpwnam(3), getpwuid(3), putpwent(3), setpwent(3), passwd(5)
KOLOPHON
Diese Seite ist Teil der Veroffentlichung 3.32 des Projekts
Linux-man-pages. Eine Beschreibung des Projekts und Informationen, wie
Fehler gemeldet werden konnen, finden sich unter
http://www.kernel.org/doc/man-pages/.
"UBERSETZUNG
Die deutsche Ubersetzung dieser Handbuchseite wurde von
erstellt.
Diese Ubersetzung ist Freie Dokumentation; lesen Sie die GNU General
Public License Version 3 oder neuer bezuglich der Copyright-
Bedingungen. Es wird KEINE HAFTUNG ubernommen.
Wenn Sie Fehler in der Ubersetzung dieser Handbuchseite finden,
schicken Sie bitte eine E-Mail an <debian-l10n-
german@lists.debian.org>.