summaryrefslogtreecommitdiff
path: root/src/cmark_ctype.h
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2016-06-06 09:41:09 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2016-06-06 09:41:09 -0700
commit7c9e3c4c5547d97d09ab842ac14e44ff391f6905 (patch)
tree0703ceba5c0557c7823d09820a22fe73372efe2d /src/cmark_ctype.h
parent45bfbcc9d2a82bb79d57aead9e51099e71e187e9 (diff)
parent75658002e907063c7e615b2630b873656d2411ba (diff)
Merge pull request #134 from nwellnhof/ctype-fixes
Fix character type detection in commonmark.c
Diffstat (limited to 'src/cmark_ctype.h')
-rw-r--r--src/cmark_ctype.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cmark_ctype.h b/src/cmark_ctype.h
index f803946..9a07618 100644
--- a/src/cmark_ctype.h
+++ b/src/cmark_ctype.h
@@ -17,6 +17,8 @@ int cmark_isalnum(char c);
int cmark_isdigit(char c);
+int cmark_isalpha(char c);
+
#ifdef __cplusplus
}
#endif