aboutsummaryrefslogtreecommitdiff
path: root/src/cmark_ctype.h
blob: 7423f801452614876540de66f0acf4277e27740c (plain)
  1. /** Locale-independent versions of functions from ctype.h.
  2. * We want cmark to behave the same no matter what the system locale.
  3. */
  4. int cmark_isspace(char c);
  5. int cmark_ispunct(char c);
  6. int cmark_isalnum(char c);
  7. int cmark_isdigit(char c);