summaryrefslogtreecommitdiff
path: root/src/cmark.h
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-03-15 16:41:59 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2015-03-15 16:41:59 -0700
commit294880e0118e27c97f26beaaa81a79de23f80727 (patch)
treed71a10d5758926e7fd6126976ef496c7645cf07c /src/cmark.h
parentcc78b3e9e2c05201469356730c60f6bf3d073232 (diff)
Added options parameter to cmark_markdown_to_html.
Diffstat (limited to 'src/cmark.h')
-rw-r--r--src/cmark.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmark.h b/src/cmark.h
index 3c68ac6..942c06c 100644
--- a/src/cmark.h
+++ b/src/cmark.h
@@ -24,7 +24,7 @@ extern "C" {
* UTF-8-encoded string.
*/
CMARK_EXPORT
-char *cmark_markdown_to_html(const char *text, int len);
+char *cmark_markdown_to_html(const char *text, int len, int options);
/** ## Node Structure
*/