mailing list of musl libc
 help / color / mirror / code / Atom feed
429a3e58a7aa9b72fd533720b7a2571831becb19 blob 763 bytes (raw)

 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
 
#include "pwf.h"

static FILE *f;

void setgrent()
{
	if (f) fclose(f);
	f = 0;
}

weak_alias(setgrent, endgrent);

struct group *getgrent()
{
	static char *line, **mem;
	static struct group gr;
	size_t size=0, nmem=0;
	if (!f) f = fopen("/etc/group", "rbe");
	if (!f) return 0;
	return __getgrent_a(f, &gr, &line, &size, &mem, &nmem);
}

struct group *getgrgid(gid_t gid)
{
	struct group *gr;
	int errno_saved;
	setgrent();
	while ((gr=getgrent()) && gr->gr_gid != gid);
	errno_saved = errno;
	endgrent();
	errno = errno_saved;
	return gr;
}

struct group *getgrnam(const char *name)
{
	struct group *gr;
	int errno_saved;
	setgrent();
	while ((gr=getgrent()) && strcmp(gr->gr_name, name));
	errno_saved = errno;
	endgrent();
	errno = errno_saved;
	return gr;
}
debug log:

solving 429a3e5 ...
found 429a3e5 in https://git.vuxu.org/mirror/musl/

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).