blob: 61b57060a01af9bf820a239737335776a57173f8 (
plain) (
blame)
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
|
#define _GNU_SOURCE
#include <pwd.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
char *cuserid(char *buf)
{
static char usridbuf[L_cuserid];
struct passwd pw, *ppw;
long pwb[256];
if (buf) *buf = 0;
getpwuid_r(geteuid(), &pw, (void *)pwb, sizeof pwb, &ppw);
if (!ppw)
return buf;
size_t len = strnlen(pw.pw_name, L_cuserid);
if (len == L_cuserid)
return buf;
if (!buf) buf = usridbuf;
memcpy(buf, pw.pw_name, len+1);
return buf;
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
|