blob: 8ab6db9b9df0e8a3b9190ff5fd59f1f5c10dffb9 (
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
29
30
31
32
33
34
|
/* See LICENSE file for copyright and license details. */
#include <errno.h>
#include <pwd.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <unistd.h>
#include "../util.h"
const char *
gid(void)
{
return bprintf("%d", getgid());
}
const char *
username(void)
{
struct passwd *pw;
if (!(pw = getpwuid(geteuid()))) {
fprintf(stderr, "getpwuid '%d': %s\n", geteuid(), strerror(errno));
return NULL;
}
return bprintf("%s", pw->pw_name);
}
const char *
uid(void)
{
return bprintf("%d", geteuid());
}
|