blob: afc605ec91fa9053a42c9020815a14cbc896ac2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/** Locale-independent versions of functions from ctype.h.
* We want cmark to behave the same no matter what the system locale.
*/
int isspace(char c);
int ispunct(char c);
int isalnum(char c);
int isdigit(char c);
|