summaryrefslogtreecommitdiff
path: root/library/include/pwcache.h
blob: e1bf0e8aa1df5086c156d46a7b7f2b3a7d7a8899 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef PROCPS_PROC_PWCACHE_H
#define PROCPS_PROC_PWCACHE_H

#include <sys/types.h>

// used in pwcache and in readproc to set size of username or groupname
#define P_G_SZ 33

char *pwcache_get_user(uid_t uid);
char *pwcache_get_group(gid_t gid);

#endif