tcc-65816/include/ctype.h

7 lines
121 B
C
Raw Permalink Normal View History

2017-06-09 11:47:37 +00:00
int isdigit(int c);
int isxdigit(int c);
int islower(int c);
int toupper(int c);
int isspace(int c);
int isprint(int c);