summaryrefslogtreecommitdiff
path: root/conform/data/ctype.h-data
blob: 7454bd328806fd89f5b8400001174817d122730a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
function int isalnum (int)
function int isalpha (int)
function int iscntrl (int)
function int isdigit (int)
function int isgraph (int)
function int islower (int)
function int isprint (int)
function int ispunct (int)
function int isspace (int)
function int isupper (int)
function int isxdigit (int)
function int tolower (int)
function int toupper (int)

#ifndef ISO
function int isascii (int)
function int toascii (int)

// XPG says the following two are macros.  But we test a bit more strictly.
function int _toupper (int)
function int _tolower (int)

// The following is not entirely correct.  It should be is[a-z]* but the
// replacement fnmatch implementation does not grok it.
allow is*
allow to*

allow *_t
#endif