17 lines
238 B
C
17 lines
238 B
C
|
#include <u.h>
|
||
|
#include <pwd.h>
|
||
|
#include <libc.h>
|
||
|
|
||
|
char*
|
||
|
getuser(void)
|
||
|
{
|
||
|
static char user[64];
|
||
|
struct passwd *pw;
|
||
|
|
||
|
pw = getpwuid(getuid());
|
||
|
if(pw == nil)
|
||
|
return "none";
|
||
|
strecpy(user, user+sizeof user, pw->pw_name);
|
||
|
return user;
|
||
|
}
|