mirror of
https://https.git.savannah.gnu.org/git/gnulib.git
synced 2026-04-28 14:43:36 +00:00
* NEWS: Mention the addition. * modules/idcache (Files): Add lib/idcache.h * lib/idcache.c: Include "idcache.h". Don't include <sys/types.h>. Add a FIXME comment. Move file-scoped "static" declarations to the top. * lib/idcache.h: New file. Include <sys/types.h> here, instead.
12 lines
237 B
C
12 lines
237 B
C
#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
|