| 1 | #ifndef CMARK_INLINES_H |
|---|---|
| 2 | #define CMARK_INLINES_H |
| 3 | |
| 4 | #include "chunk.h" |
| 5 | #include "references.h" |
| 6 | |
| 7 | #ifdef __cplusplus |
| 8 | extern "C"{ |
| 9 | #endif |
| 10 | |
| 11 | unsigned char *cmark_clean_url(cmark_mem *mem, cmark_chunk *url); |
| 12 | unsigned char *cmark_clean_title(cmark_mem *mem, cmark_chunk *title); |
| 13 | |
| 14 | void cmark_parse_inlines(cmark_mem *mem, cmark_node *parent, |
| 15 | cmark_reference_map *refmap, int options); |
| 16 | |
| 17 | bufsize_t cmark_parse_reference_inline(cmark_mem *mem, cmark_chunk *input, |
| 18 | cmark_reference_map *refmap); |
| 19 | |
| 20 | #ifdef __cplusplus |
| 21 | } |
| 22 | #endif |
| 23 | |
| 24 | #endif |
| 25 |