Sha256: 1904321f0b1a9e8bb53d88051f9d2832df2964c2db691acfb3c8e5e61684b3a6

Contents?: true

Size: 780 Bytes

Versions: 5

Compression:

Stored size: 780 Bytes

Contents

#include "chunk.h"
#include "cmark-gfm.h"

#ifdef __cplusplus
extern "C" {
#endif

bufsize_t _ext_scan_at(bufsize_t (*scanner)(const unsigned char *),
                       unsigned char *ptr, int len, bufsize_t offset);
bufsize_t _scan_table_start(const unsigned char *p);
bufsize_t _scan_table_cell(const unsigned char *p);
bufsize_t _scan_table_cell_end(const unsigned char *p);
bufsize_t _scan_table_row_end(const unsigned char *p);

#define scan_table_start(c, l, n) _ext_scan_at(&_scan_table_start, c, l, n)
#define scan_table_cell(c, l, n) _ext_scan_at(&_scan_table_cell, c, l, n)
#define scan_table_cell_end(c, l, n) _ext_scan_at(&_scan_table_cell_end, c, l, n)
#define scan_table_row_end(c, l, n) _ext_scan_at(&_scan_table_row_end, c, l, n)

#ifdef __cplusplus
}
#endif

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
commonmarker-0.18.2 ext/commonmarker/ext_scanners.h
commonmarker-0.18.1 ext/commonmarker/ext_scanners.h
commonmarker-0.18.0 ext/commonmarker/ext_scanners.h
commonmarker-0.17.13 ext/commonmarker/ext_scanners.h
commonmarker-0.17.12 ext/commonmarker/ext_scanners.h