]> git.ipfire.org Git - thirdparty/glibc.git/blob - conform/data/ctype.h-data
Add support for XPG7 testing.
[thirdparty/glibc.git] / conform / data / ctype.h-data
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)
14
15 #if !defined ISO && !defined POSIX && !defined POSIX2008
16 function int isascii (int)
17 function int toascii (int)
18
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
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*
27
28 allow *_t
29
30 # if defined XOPEN2K8 || defined XOPEN2K8 || defined POSIX2008
31 type locale_t
32
33 function int isalnum_l (int, locale_t)
34 function int isalpha_l (int, locale_t)
35 function int iscntrl_l (int, locale_t)
36 function int isdigit_l (int, locale_t)
37 function int isgraph_l (int, locale_t)
38 function int islower_l (int, locale_t)
39 function int isprint_l (int, locale_t)
40 function int ispunct_l (int, locale_t)
41 function int isspace_l (int, locale_t)
42 function int isupper_l (int, locale_t)
43 function int isxdigit_l (int, locale_t)
44 function int tolower_l (int, locale_t)
45 function int toupper_l (int, locale_t)
46 # endif
47 #endif