2.9BSD/usr/src/lib/c/stdio/getgrnam.c

Compare this file to the similar file:
Show the results in this format:

/*	@(#)getgrnam.c	2.1	SCCS id keyword	*/
#include <grp.h>

struct group *
getgrnam(name)
register char *name;
{
	register struct group *p;
	struct group *getgrent();

	setgrent();
	while( (p = getgrent()) && strcmp(p->gr_name,name) );
	endgrent();
	return(p);
}