Document problem with NATs in getaddrinfo.
[glibc.git] / conform / data / ctype.h-data
blob091d377becb1bc7dcd0dbb29e0c696b244d84383
1 function int isalnum (int)
2 function int isalpha (int)
3 function int iscntrl (int)
4 function int isdigit (int)
5 function int isgraph (int)
6 function int islower (int)
7 function int isprint (int)
8 function int ispunct (int)
9 function int isspace (int)
10 function int isupper (int)
11 function int isxdigit (int)
12 function int tolower (int)
13 function int toupper (int)
15 #if !defined ISO && !defined POSIX && !defined POSIX2008
16 function int isascii (int)
17 function int toascii (int)
19 // XPG says the following two are macros.  But we test a bit more strictly.
20 function int _toupper (int)
21 function int _tolower (int)
22 #endif
24 # if defined XOPEN2K8 || defined POSIX2008
25 type locale_t
27 function int isalnum_l (int, locale_t)
28 function int isalpha_l (int, locale_t)
29 function int iscntrl_l (int, locale_t)
30 function int isdigit_l (int, locale_t)
31 function int isgraph_l (int, locale_t)
32 function int islower_l (int, locale_t)
33 function int isprint_l (int, locale_t)
34 function int ispunct_l (int, locale_t)
35 function int isspace_l (int, locale_t)
36 function int isupper_l (int, locale_t)
37 function int isxdigit_l (int, locale_t)
38 function int tolower_l (int, locale_t)
39 function int toupper_l (int, locale_t)
40 # endif
42 // The following is not entirely correct.  It should be is[a-z]* but the
43 // replacement fnmatch implementation does not grok it.
44 allow is*
45 allow to*
47 allow *_t