git: 9front

ref: 44b28c9f2e0fa51115b9f4e203eea9ee34e5c73a
dir: /sys/src/ape/lib/ap/plan9/getgrnam.c/

View raw version
#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 = name;
	mem = 0;
	if(_getpw(&num, &nam, &mem)){
		holdgroup.gr_name = nam;
		holdgroup.gr_gid = num;
		holdgroup.gr_mem = _grpmems(mem);
		return &holdgroup;
	}
	return NULL;
}