diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-06-06 09:41:09 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2016-06-06 09:41:09 -0700 |
commit | 7c9e3c4c5547d97d09ab842ac14e44ff391f6905 (patch) | |
tree | 0703ceba5c0557c7823d09820a22fe73372efe2d /src/cmark_ctype.h | |
parent | 45bfbcc9d2a82bb79d57aead9e51099e71e187e9 (diff) | |
parent | 75658002e907063c7e615b2630b873656d2411ba (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.h | 2 |
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 |