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_
isalpha
int isalpha(int c)
isalnum
int isalnum(int c)
isprint
int isprint(int c)
isblank
int isblank(int c)
tolower
int tolower(int c)
toupper
int toupper(int c)
ispunct
int ispunct(int c)
isspace
int isspace(int c)
isdigit
int isdigit(int c)
islower
int islower(int c)
isgraph
int isgraph(int c)
isupper
int isupper(int c)
isxdigit
int isxdigit(int c)
c
byte byte c
Definition: api.h:59
iscntrl
int iscntrl(int c)