32bit memcmp/strcmp/strncmp optimized for SSSE3/SSS4.2
[glibc.git] / conform / data / pwd.h-data
bloba8edf27730bd375c829b208ab75a38d2cb6461cb
1 #ifndef ISO
2 type {struct passwd}
3 element {struct passwd} {char*} pw_name
4 element {struct passwd} uid_t pw_uid
5 element {struct passwd} gid_t pw_gid
6 element {struct passwd} {char*} pw_dir
7 element {struct passwd} {char*} pw_shell
9 # ifndef POSIX
10 type uid_t
11 type gid_t
12 #  if defined XOPEN2K8 || defined POSIX2008
13 type size_t
14 #  endif
15 # endif
17 function {struct passwd*} getpwnam (const char*)
18 function {struct passwd*} getpwuid (uid_t)
19 function int getpwnam_r (const char*, struct passwd*, char*, size_t, struct passwd**)
20 function int getpwuid_r (uid_t, struct passwd*, char*, size_t, struct passwd**)
21 # ifndef POSIX2008
22 function void endpwent (void)
23 function {struct passwd*} getpwent (void)
24 function void setpwent (void)
25 # endif
27 allow pw_*
28 allow *_t
29 #endif