File: idcache.h

package info (click to toggle)
dc3dd 7.2.641-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 25,940 kB
  • ctags: 6,455
  • sloc: ansic: 29,499; sh: 6,778; perl: 1,468; yacc: 1,227; makefile: 152; python: 39; sed: 16
file content (11 lines) | stat: -rwxr-xr-x 237 bytes parent folder | download | duplicates (41)
1
2
3
4
5
6
7
8
9
10
11
#ifndef IDCACHE_H
# define IDCACHE_H 1

# include <sys/types.h>

extern char *getuser (uid_t uid);
extern char *getgroup (gid_t gid);
extern uid_t *getuidbyname (const char *user);
extern gid_t *getgidbyname (const char *group);

#endif