Sha256: cd3137246058d58b3325969f96472b8e3c39ae2de93e0b07fddfb22bad952401
Contents?: true
Size: 450 Bytes
Versions: 30
Compression:
Stored size: 450 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); void cmark_unlink_footnotes_map(cmark_map *map); #ifdef __cplusplus } #endif #endif
Version data entries
30 entries across 30 versions & 4 rubygems