summaryrefslogtreecommitdiff
path: root/src/grp/getgrnam.c
blob: 493a6b5aec7d7f3acb357e9a5fe9bacf9eac5670 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "sys/types.h"
#include <grp.h>
#include "_grp.h"
#include "string.h"

struct group * getgrnam(const char * name)
{
	struct group *grp = NULL;
	setgrent();

	while ((grp = getgrent()) != NULL) {
	if (strcmp(name, grp->gr_name) == 0) {
			endgrent();
			return grp;
		}
	}

	endgrent();
	return NULL;
}

/*
POSIX(1)
*/