2.9
[glibc/nacl-glibc.git] / conform / data / ctype.h-data
blob7454bd328806fd89f5b8400001174817d122730a
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 #ifndef ISO
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)
23 // The following is not entirely correct.  It should be is[a-z]* but the
24 // replacement fnmatch implementation does not grok it.
25 allow is*
26 allow to*
28 allow *_t
29 #endif