Go to the first, previous, next, last section, table of contents.
#include <pwd.h> struct passwd *getpwnam(const char *name);
This function gets the password file entry matching name. See
section getpwent, for the description of struct passwd
.
The matching record, or NULL
if none match.
not ANSI, POSIX
Go to the first, previous, next, last section, table of contents.