diff options
author | dzwdz | 2023-08-14 18:51:07 +0200 |
---|---|---|
committer | dzwdz | 2023-08-14 18:51:07 +0200 |
commit | 642b5fb0007b64c77d186fcb018d571152ee1d47 (patch) | |
tree | 1c466461f3602d306be309a053edae558ef2568e /src/libc/include/pwd.h | |
parent | 8050069c57b729c18c19b1a03ab6e4bf63b4735e (diff) |
reorganization: first steps
Diffstat (limited to 'src/libc/include/pwd.h')
-rw-r--r-- | src/libc/include/pwd.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/libc/include/pwd.h b/src/libc/include/pwd.h new file mode 100644 index 0000000..6721ca2 --- /dev/null +++ b/src/libc/include/pwd.h @@ -0,0 +1,14 @@ +#pragma once +#include <sys/types.h> + +struct passwd { + char *pw_name; + char *pw_passwd; + uid_t pw_uid; + gid_t pw_gid; + char *pw_gecos; + char *pw_dir; + char *pw_shell; +}; + +struct passwd *getpwuid(uid_t uid); |