summaryrefslogtreecommitdiff
path: root/src/cmark.h
diff options
context:
space:
mode:
authorNick Wellnhofer <wellnhofer@aevum.de>2014-11-12 17:40:25 +0100
committerNick Wellnhofer <wellnhofer@aevum.de>2014-11-12 19:31:41 +0100
commitfc923ee0a3e3837fdb51c3f8fc6e99d16bdb8f4c (patch)
tree16bce034c9cdcb67f752e2cf900370f6ffd315dd /src/cmark.h
parent2810f421ae10869f50ee9b95c3260e3d38734306 (diff)
Prefix names in buffer.h
Diffstat (limited to 'src/cmark.h')
-rw-r--r--src/cmark.h6
1 files changed, 3 insertions, 3 deletions
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);