1#ifndef CMARK_CMARK_CTYPE_H
2#define CMARK_CMARK_CTYPE_H
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8/** Locale-independent versions of functions from ctype.h.
9 * We want cmark to behave the same no matter what the system locale.
10 */
11
12int cmark_isspace(char c);
13
14int cmark_ispunct(char c);
15
16int cmark_isalnum(char c);
17
18int cmark_isdigit(char c);
19
20int cmark_isalpha(char c);
21
22#ifdef __cplusplus
23}
24#endif
25
26#endif
27