Updated with Tizen:Base source codes
[external/procps.git] / proc / pwcache.h
1 #ifndef PROCPS_PROC_PWCACHE_H
2 #define PROCPS_PROC_PWCACHE_H
3
4 #include <sys/types.h>
5 #include "procps.h"
6
7 EXTERN_C_BEGIN
8
9 // used in pwcache and in readproc to set size of username or groupname
10 #define P_G_SZ 20
11
12 extern char *user_from_uid(uid_t uid);
13 extern char *group_from_gid(gid_t gid);
14
15 EXTERN_C_END
16
17 #endif