diff options
Diffstat (limited to 'src/cmark_ctype.h')
-rw-r--r-- | src/cmark_ctype.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cmark_ctype.h b/src/cmark_ctype.h index afc605e..7423f80 100644 --- a/src/cmark_ctype.h +++ b/src/cmark_ctype.h @@ -2,10 +2,10 @@ * We want cmark to behave the same no matter what the system locale. */ -int isspace(char c); +int cmark_isspace(char c); -int ispunct(char c); +int cmark_ispunct(char c); -int isalnum(char c); +int cmark_isalnum(char c); -int isdigit(char c); +int cmark_isdigit(char c); |