BSD 3 development
[unix-history] / usr / src / cmd / csh / getpwnam.c
/* Copyright (c) 1979 Regents of the University of California */
#include <pwd.h>
struct passwd *
getpwnam(name)
char *name;
{
register struct passwd *p;
struct passwd *getpwent();
setpwent();
while( (p = getpwent()) && strcmp(name,p->pw_name) );
endpwent();
return(p);
}