summaryrefslogtreecommitdiff
path: root/sys/src/ape/lib/ap/plan9/getgrnam.c
blob: f4bd6b3b282334e30d3726e9fb7cd84cb7c1b16e (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
25
26
#include <stddef.h>
#include <grp.h>

extern int _getpw(int *, char **, char **);
extern char **_grpmems(char *);

static struct group holdgroup;

struct group *
getgrnam(const char *name)
{
	int num;
	char *nam, *mem;

	num = 0;
	nam = (char *)name;
	mem = 0;
	if(_getpw(&num, &nam, &mem)){
		holdgroup.gr_name = nam;
		holdgroup.gr_passwd = "";
		holdgroup.gr_gid = num;
		holdgroup.gr_mem = _grpmems(mem);
		return &holdgroup;
	}
	return NULL;
}