summaryrefslogtreecommitdiffstats
path: root/public/sdk/inc/posix/pwd.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--public/sdk/inc/posix/pwd.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/public/sdk/inc/posix/pwd.h b/public/sdk/inc/posix/pwd.h
new file mode 100644
index 000000000..9be567e29
--- /dev/null
+++ b/public/sdk/inc/posix/pwd.h
@@ -0,0 +1,40 @@
+/*++
+
+Copyright (c) 1992-1996 Microsoft Corporation
+
+Module Name:
+
+ pwd.h
+
+Abstract:
+
+ Defines data types and declares routines necessary for user database
+ access, as required by 1003.1-88 (9.2.2).
+
+--*/
+
+#ifndef _PWD_
+#define _PWD_
+
+#include <sys/types.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+struct passwd {
+ char *pw_name; /* users login name */
+ uid_t pw_uid; /* user id number */
+ gid_t pw_gid; /* group id number */
+ char *pw_dir; /* home directory */
+ char *pw_shell; /* shell */
+};
+
+struct passwd * _CRTAPI1 getpwuid(uid_t);
+struct passwd * _CRTAPI1 getpwnam(const char *);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _PWD_ */