]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/posix/cuserid.c
(see ChangeLog for Oct 29.)
[thirdparty/glibc.git] / sysdeps / posix / cuserid.c
CommitLineData
ec4b0518 1/* Copyright (C) 1991, 1996 Free Software Foundation, Inc.
28f540f4
RM
2This file is part of the GNU C Library.
3
4The GNU C Library is free software; you can redistribute it and/or
5modify it under the terms of the GNU Library General Public License as
6published by the Free Software Foundation; either version 2 of the
7License, or (at your option) any later version.
8
9The GNU C Library is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12Library General Public License for more details.
13
14You should have received a copy of the GNU Library General Public
15License along with the GNU C Library; see the file COPYING.LIB. If
16not, write to the Free Software Foundation, Inc., 675 Mass Ave,
17Cambridge, MA 02139, USA. */
18
cccda09f 19#include <pwd.h>
28f540f4
RM
20#include <stdio.h>
21#include <string.h>
cccda09f
UD
22#include <unistd.h>
23#include <sys/types.h>
28f540f4 24
28f540f4
RM
25/* Return the username of the caller.
26 If S is not NULL, it points to a buffer of at least L_cuserid bytes
27 into which the name is copied; otherwise, a static buffer is used. */
28char *
ec4b0518
UD
29cuserid (s)
30 char *s;
28f540f4
RM
31{
32 static char name[L_cuserid];
ec4b0518 33 struct passwd *pwent = getpwuid (geteuid ());
28f540f4
RM
34
35 if (pwent == NULL)
36 {
37 if (s != NULL)
38 s[0] = '\0';
39 return NULL;
40 }
41
42 if (s == NULL)
43 s = name;
ec4b0518 44 return strcpy (s, pwent->pw_name);
28f540f4 45}