summaryrefslogtreecommitdiff
path: root/src/pwd/getpwuid.c
blob: 7c8eaadf52d346fe88597536c63d87e9c4112f1e (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
27
28
#if 0

#include <sys/types.h>
#include <pwd.h>
#include "_pwd.h"

struct passwd * getpwuid(uid_t uid)
{
	struct passwd *pwd = NULL;
	setpwent();

	while ((pwd = getpwent()) != NULL) {
		if (pwd->pw_uid == uid) {
			endpwent();
			return pwd;
		}
	}

	endpwent();
	return NULL;
}

/*
POSIX(1)
*/


#endif