You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
385 B
14 lines
385 B
#ifndef UTIL_LINUX_PWDUTILS_H |
|
#define UTIL_LINUX_PWDUTILS_H |
|
|
|
#include <sys/types.h> |
|
#include <pwd.h> |
|
#include <grp.h> |
|
|
|
extern struct passwd *xgetpwnam(const char *username, char **pwdbuf); |
|
extern struct group *xgetgrnam(const char *groupname, char **grpbuf); |
|
extern struct passwd *xgetpwuid(uid_t uid, char **pwdbuf); |
|
extern char *xgetlogin(void); |
|
|
|
#endif /* UTIL_LINUX_PWDUTILS_H */ |
|
|
|
|