From 9c5d074b0067b564f230b3770b2026afb9bb6998 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Mon, 29 Dec 2014 22:31:17 -0800 Subject: Added cmark_ prefix to functions in cmark_ctype. --- src/cmark_ctype.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/cmark_ctype.h') 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); -- cgit v1.2.3