summaryrefslogtreecommitdiff
path: root/src/unistd/getlogin_r.c
blob: 37ce0d43dafb92e5bd6f2cb8ffa60ee3619b43d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>

int getlogin_r(char *name, size_t size)
{
	char *logname = getlogin();
	if (!logname) return ENXIO; /* or...? */
	if (strlen(logname) >= size) return ERANGE;
	strcpy(name, logname);
	return 0;
}