blob: 8d2d51ce0a312152594b04c7cbd281bd53918fad (
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
|
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/limits.h>
char *
getlogin_r(char *buf, int len)
{
int f, n;
f = open("/dev/user", O_RDONLY);
if(f < 0)
return 0;
n = read(f, buf, len);
buf[len-1] = 0;
close(f);
return (n>=0)? buf : 0;
}
char *
getlogin(void)
{
static char buf[NAME_MAX+1];
return getlogin_r(buf, sizeof buf);
}
|