summaryrefslogtreecommitdiff
path: root/src/cmark.h
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-07-12 15:33:44 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2015-07-12 15:33:44 -0700
commit46ac1e61878a6eefea1f3bfff8d25edf8eca0c05 (patch)
tree4fb5cf08e39557430b33b3a60291fa2a0aea6134 /src/cmark.h
parent9219938929274df6398dfe6b9356fd8bbb3d565b (diff)
Added width parameter to render_man.
Rewrote man.c using new renderer framework.
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 6618301..7ae6d36 100644
--- a/src/cmark.h
+++ b/src/cmark.h
@@ -479,7 +479,7 @@ char *cmark_render_html(cmark_node *root, int options);
/** Render a 'node' tree as a groff man page, without the header.
*/
CMARK_EXPORT
-char *cmark_render_man(cmark_node *root, int options);
+char *cmark_render_man(cmark_node *root, int options, int width);
/** Render a 'node' tree as a commonmark document.
*/