Sha256: 197ae599ae3a541381027d3083a81956eabbbcd7c579c94c7e2791094edcbf68
Contents?: true
Size: 400 Bytes
Versions: 36
Compression:
Stored size: 400 Bytes
Contents
#ifndef CMARK_FOOTNOTES_H #define CMARK_FOOTNOTES_H #include "map.h" #ifdef __cplusplus extern "C" { #endif struct cmark_footnote { cmark_map_entry entry; cmark_node *node; unsigned int ix; }; typedef struct cmark_footnote cmark_footnote; void cmark_footnote_create(cmark_map *map, cmark_node *node); cmark_map *cmark_footnote_map_new(cmark_mem *mem); #ifdef __cplusplus } #endif #endif
Version data entries
36 entries across 35 versions & 3 rubygems