File: user.c

package info (click to toggle)
suckless-tools 48-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 948 kB
  • sloc: ansic: 5,415; makefile: 490; sh: 80
file content (33 lines) | stat: -rw-r--r-- 531 bytes parent folder | download | duplicates (2)
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
/* 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());
}