Sha256: e0e0a0135a7e7e7fa9621c229de1b2334f7bb81b40ff18212c8cfc42ed77d13f

Contents?: true

Size: 564 Bytes

Versions: 4

Compression:

Stored size: 564 Bytes

Contents

#ifndef CMARK_UTF8_H
#define CMARK_UTF8_H

#include <stdint.h>
#include "buffer.h"

#ifdef __cplusplus
extern "C" {
#endif

void cmark_utf8proc_case_fold(cmark_strbuf *dest, const uint8_t *str, bufsize_t len);
void cmark_utf8proc_encode_char(int32_t uc, cmark_strbuf *buf);
int cmark_utf8proc_iterate(const uint8_t *str, bufsize_t str_len, int32_t *dst);
void cmark_utf8proc_check(cmark_strbuf *dest, const uint8_t *line, bufsize_t size);
int cmark_utf8proc_is_space(int32_t uc);
int cmark_utf8proc_is_punctuation(int32_t uc);

#ifdef __cplusplus
}
#endif

#endif

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
commonmarker-0.5.1 ext/commonmarker/cmark/src/utf8.h
commonmarker-0.5.0 ext/commonmarker/cmark/src/utf8.h
commonmarker-0.4.1 ext/commonmarker/cmark/src/utf8.h
commonmarker-0.4.0 ext/commonmarker/cmark/src/utf8.h