Sha256: 5d2cf4e586f9c917f13d9a080d3e23c174c87f75997a12872faaf0809f1da536

Contents?: true

Size: 407 Bytes

Versions: 4

Compression:

Stored size: 407 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);

int cmark_isalpha(char c);

#ifdef __cplusplus
}
#endif

#endif

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
commonmarker-0.13.0 ext/commonmarker/cmark/src/cmark_ctype.h
commonmarker-0.12.0 ext/commonmarker/cmark/src/cmark_ctype.h
commonmarker-0.10.0 ext/commonmarker/cmark/src/cmark_ctype.h
commonmarker-0.9.2 ext/commonmarker/cmark/src/cmark_ctype.h