11 lines
209 B
C
11 lines
209 B
C
![]() |
#ifndef UTIL_LINUX_PWDUTILS_H
|
||
|
#define UTIL_LINUX_PWDUTILS_H
|
||
|
|
||
|
#include <sys/types.h>
|
||
|
#include <pwd.h>
|
||
|
|
||
|
extern struct passwd *xgetpwnam(const char *username, char **pwdbuf);
|
||
|
|
||
|
#endif /* UTIL_LINUX_PWDUTILS_H */
|
||
|
|