From fc923ee0a3e3837fdb51c3f8fc6e99d16bdb8f4c Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Wed, 12 Nov 2014 17:40:25 +0100 Subject: Prefix names in buffer.h --- src/cmark.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/cmark.h') diff --git a/src/cmark.h b/src/cmark.h index 5f0d5f7..1ffbcf1 100644 --- a/src/cmark.h +++ b/src/cmark.h @@ -63,7 +63,7 @@ struct FencedCodeData { int fence_length; int fence_offset; unsigned char fence_char; - strbuf info; + cmark_strbuf info; }; struct node_block { @@ -90,7 +90,7 @@ struct node_block { struct node_block* last_child; struct node_block* parent; struct node_block* top; - strbuf string_content; + cmark_strbuf string_content; node_inl* inline_content; union { @@ -116,7 +116,7 @@ node_block *cmark_parse_file(FILE *f); void cmark_free_nodes(node_block *e); void cmark_debug_print(node_block *root); -void cmark_render_html(strbuf *html, node_block *root); +void cmark_render_html(cmark_strbuf *html, node_block *root); unsigned char *cmark_markdown_to_html(unsigned char *text, int len); -- cgit v1.2.3