Sha256: 7644afcfade81143b39f71db11904562a4dec9df579a211e9b9540c378b4b382
Contents?: true
Size: 379 Bytes
Versions: 17
Compression:
Stored size: 379 Bytes
Contents
#ifndef CMARK_CMARK_CTYPE_H #define CMARK_CMARK_CTYPE_H #ifdef __cplusplus extern "C" { #endif /** Locale-independent versions of functions from ctype.h. * We want cmark to behave the same no matter what the system locale. */ int cmark_isspace(char c); int cmark_ispunct(char c); int cmark_isalnum(char c); int cmark_isdigit(char c); #ifdef __cplusplus } #endif #endif
Version data entries
17 entries across 17 versions & 1 rubygems