From feb119992a6fbea3cedead04b1941b1fe114990b Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Fri, 28 Nov 2014 21:56:08 -0800 Subject: Renamed identifiers in public API: cmark_doc_parser => cmark_parser cmark_new_doc_parser => cmark_parser_new cmark_free_doc_parser => cmark_parser_free cmark_finish => cmark_parser_finish cmark_process_line => cmark_parser_process_line cmark_node_destroy => cmark_node_free Closes #223. --- src/parser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/parser.h') diff --git a/src/parser.h b/src/parser.h index bbbc3b1..e0ed507 100644 --- a/src/parser.h +++ b/src/parser.h @@ -11,7 +11,7 @@ extern "C" { #define MAX_LINK_LABEL_LENGTH 1000 -struct cmark_doc_parser { +struct cmark_parser { struct cmark_reference_map *refmap; struct cmark_node* root; struct cmark_node* current; -- cgit v1.2.3