75e4ce88aa17139643da0ecb99ed6d7eb1123590
[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
18 extern int isalnum(int ch);
19
20 extern int toupper(int ch);
21 extern int tolower(int ch);
22
23 extern int isprint(int ch);
24
25 extern int isspace(int ch);
26
27 extern int isxdigit(int ch);
28
29 // C99
30 extern int isblank(int ch);
31
32 #ifdef __cplusplus
33 }
34 #endif
35
36 #endif

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