PSXSDK
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
ctype.h
Go to the documentation of this file.
1 /*
2  * ctype.h
3  *
4  * PSXSDK
5  */
6 
7 #ifndef _CTYPE_H
8 #define _CTYPE_H
9 
10 int isupper(int c);
11 int islower(int c);
12 int isdigit(int c);
13 int isxdigit(int c);
14 int isalpha(int c);
15 int isalnum(int c);
16 int isspace(int c);
17 int isprint(int c);
18 int isgraph(int c);
19 int iscntrl(int c);
20 int isblank(int c);
21 int toupper(int c);
22 int tolower(int c);
23 
24 #endif
25