blob: 209e17518257a05b5b01f71299c5fd43b5204f9c (
plain) (
blame)
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
|
/*
* ctype.h
*
* PSXSDK
*/
#ifndef _CTYPE_H
#define _CTYPE_H
int isupper(int c);
int islower(int c);
int isdigit(int c);
int isxdigit(int c);
int isalpha(int c);
int isalnum(int c);
int isspace(int c);
int isprint(int c);
int isgraph(int c);
int iscntrl(int c);
int isblank(int c);
int toupper(int c);
int tolower(int c);
#endif
|