summaryrefslogtreecommitdiff
path: root/src/cmark_ctype.h
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-12-29 22:31:17 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2014-12-29 22:31:17 -0800
commit9c5d074b0067b564f230b3770b2026afb9bb6998 (patch)
treef399a256c4b3c05d9889df8d2c691b80329785cd /src/cmark_ctype.h
parentdee580425077fd177f49cddf64a157af032fbb3f (diff)
Added cmark_ prefix to functions in cmark_ctype.
Diffstat (limited to 'src/cmark_ctype.h')
-rw-r--r--src/cmark_ctype.h8
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);