Initial commit of visual studio 9 git build superproject.
[git-build-vc9.git] / tcrt / inc / pwd.h
blobebcba47811695617a492e861e493a040cf348c0b
1 /*=============================================================================
2 pwd.h :
4 Copyright © 2008 Bruno Santos <nayart3@gmail.com>
5 =============================================================================*/
7 #ifndef TCRT_PWD__H_
8 #define TCRT_PWD__H_
10 ///////////////////////////////////////////////////////////////////////////////
11 #include "sys/types.h"
13 ///////////////////////////////////////////////////////////////////////////////
14 TCRT_BEGIN_EXTERN_C
16 ///////////////////////////////////////////////////////////////////////////////
17 typedef struct passwd {
18 char *pw_name;
19 uid_t pw_uid;
20 gid_t pw_gid;
21 char *pw_dir;
22 char *pw_shell;
23 char *pw_gecos;
26 ///////////////////////////////////////////////////////////////////////////////
27 struct passwd* getpwuid(uid_t uid);
28 struct passwd* getpwnam(const char* name);
30 ///////////////////////////////////////////////////////////////////////////////
31 TCRT_END_EXTERN_C
33 // EOF ////////////////////////////////////////////////////////////////////////
34 #endif /* TCRT_PWD__H_ */