aboutsummaryrefslogtreecommitdiff
path: root/src/cmark_ctype.h
blob: afc605ec91fa9053a42c9020815a14cbc896ac2f (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 isspace(char c);
  5. int ispunct(char c);
  6. int isalnum(char c);
  7. int isdigit(char c);