llvm-mos-sdk
ctype.h
Go to the documentation of this file.
1 #ifndef _CTYPE_H_
2 #define _CTYPE_H_
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 int isalnum(int c);
9 int isalpha(int c);
10 int isblank(int c);
11 int iscntrl(int c);
12 int isdigit(int c);
13 int isgraph(int c);
14 int islower(int c);
15 int isprint(int c);
16 int ispunct(int c);
17 int isspace(int c);
18 int isupper(int c);
19 int isxdigit(int c);
20 int tolower(int c);
21 int toupper(int c);
22 
23 #ifdef __cplusplus
24 }
25 #endif
26 
27 #endif // not _CTYPE_H_
int iscntrl(int c)
int isalpha(int c)
int isdigit(int c)
int isgraph(int c)
int isspace(int c)
int islower(int c)
int isprint(int c)
int toupper(int c)
int tolower(int c)
int isupper(int c)
int isxdigit(int c)
int isalnum(int c)
int isblank(int c)
int ispunct(int c)
byte byte c
Definition: api.h:59