File: pwcache.h

package info (click to toggle)
procps 2%3A4.0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 12,516 kB
  • sloc: ansic: 29,803; sh: 5,203; makefile: 549; exp: 538; sed: 16
file content (12 lines) | stat: -rw-r--r-- 255 bytes parent folder | download
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