misc - Cleaning up warnings that occur on travis
[tpg/acess2.git] / KernelLand / Kernel / include / ctype.h
1 /*
2  * Acess2 Kernel 
3  * - By John Hodge (thePowersGang)
4  * 
5  * ctype.h
6  * - 
7  */
8 #ifndef _ACESS__CTYPE_H_
9 #define _ACESS__CTYPE_H_
10
11 extern int      isalnum(int c);
12 extern int      isalpha(int c);
13 extern int      isascii(int c);
14 extern int      isblank(int c);
15 extern int      iscntrl(int c);
16 extern int      isdigit(int c);
17 extern int      isgraph(int c);
18 extern int      islower(int c);
19 extern int      isprint(int c);
20 extern int      ispunct(int c);
21 extern int      isspace(int c);
22 extern int      isupper(int c);
23 extern int      isxdigit(int c);
24
25 extern int      toupper(int c);
26 extern int      tolower(int c);
27
28 #endif
29

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