69067e87fa99e6ab6efea1daab987c5c05d04df2
[tpg/acess2.git] / Usermode / Libraries / libc.so_src / include_exp / ctype.h
1 /*
2  * Acess2 C Library
3  * - By John Hodge (thePowersGang)
4  *
5  * ctype.h
6  * - Type manipulation?
7  */
8 #ifndef _CTYPE_H_
9 #define _CTYPE_H_
10
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14
15 extern int isalpha(int ch);
16 extern int isdigit(int ch);
17 extern int isalnum(int ch);
18 extern int isxdigit(int ch);
19
20 extern int islower(int ch);
21 extern int isupper(int ch);
22 extern int ispunct(int ch);
23
24 extern int isprint(int ch);
25 extern int isgraph(int ch);
26
27 extern int isspace(int ch);
28
29 extern int iscntrl(int ch);
30
31 // C99
32 extern int isblank(int ch);
33
34 // Conversions
35 extern int toupper(int ch);
36 extern int tolower(int ch);
37
38 #ifdef __cplusplus
39 }
40 #endif
41
42 #endif

UCC git Repository :: git.ucc.asn.au