Files
Documentation
contrib
include
lib
misc
po
proc
COPYING
Makefile.am
alloc.c
alloc.h
devname.c
devname.h
escape.c
escape.h
ksym.c
libprocps.pc.in
libprocps.sym
procps.h
pwcache.c
pwcache.h
readproc.c
readproc.h
sig.c
sig.h
slab.c
slab.h
sysinfo.c
sysinfo.h
version.c
version.h
wchan.h
whattime.c
whattime.h
ps
testsuite
top
.gitignore
AUTHORS
COPYING
COPYING.LIB
ChangeLog
Makefile.am
NEWS
README
autogen.sh
configure.ac
free.1
free.c
kill.1
pgrep.1
pgrep.c
pkill.1
pmap.1
pmap.c
pwdx.1
pwdx.c
skill.1
skill.c
slabtop.1
slabtop.c
snice.1
sysctl.8
sysctl.c
sysctl.conf
sysctl.conf.5
tload.1
tload.c
uptime.1
uptime.c
vmstat.8
vmstat.c
w.1
w.c
watch.1
watch.c
procps/proc/pwcache.h
2004-07-20 23:31:12 +00:00

18 lines
313 B
C

#ifndef PROCPS_PROC_PWCACHE_H
#define PROCPS_PROC_PWCACHE_H
#include <sys/types.h>
#include "procps.h"
EXTERN_C_BEGIN
// used in pwcache and in readproc to set size of username or groupname
#define P_G_SZ 20
extern char *user_from_uid(uid_t uid);
extern char *group_from_gid(gid_t gid);
EXTERN_C_END
#endif