1
0
Fork 0
slstatus/components/user.c
drkhsh 0696635bcb radical re-formatting 0/3: Alphabetic headers
Except stated otherwise in comment.

Fixes coding style. Formatting commits suck, incoherent coding style
sucks more.
https://suckless.org/coding_style/
2022-10-28 01:03:20 +02:00

34 lines
531 B
C

/* See LICENSE file for copyright and license details. */
#include <pwd.h>
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
#include "../slstatus.h"
#include "../util.h"
const char *
gid(const char *unused)
{
return bprintf("%d", getgid());
}
const char *
username(const char *unused)
{
struct passwd *pw;
if (!(pw = getpwuid(geteuid()))) {
warn("getpwuid '%d':", geteuid());
return NULL;
}
return bprintf("%s", pw->pw_name);
}
const char *
uid(const char *unused)
{
return bprintf("%d", geteuid());
}