summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-02-16 12:06:51 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-02-16 12:06:51 -0800
commit2bcca4c2118733f14a91eaf585e8ff97e216b6bd (patch)
tree5302f78894bcf100e7e8172c0289bb30ea3e5f0d /man
parent5de2e4e9d39fd918d041169e2759d4f4b57a0cc6 (diff)
Made 'options' an int rather than a long.
For consistency with the API.
Diffstat (limited to 'man')
-rw-r--r--man/man3/cmark.312
1 files changed, 6 insertions, 6 deletions
diff --git a/man/man3/cmark.3 b/man/man3/cmark.3
index c485bfb..bb9c7c4 100644
--- a/man/man3/cmark.3
+++ b/man/man3/cmark.3
@@ -1,4 +1,4 @@
-.TH cmark 3 "February 15, 2015" "LOCAL" "Library Functions Manual"
+.TH cmark 3 "February 16, 2015" "LOCAL" "Library Functions Manual"
.SH
NAME
.PP
@@ -437,14 +437,14 @@ Feeds a string of length \f[I]len\f[] to \f[I]parser\f[]\&.
Finish parsing and return a pointer to a tree of nodes.
.PP
-\fIcmark_node *\f[] \fBcmark_parse_document\f[](\fIconst char *buffer\f[], \fIsize_t len\f[], \fIlong options\f[])
+\fIcmark_node *\f[] \fBcmark_parse_document\f[](\fIconst char *buffer\f[], \fIsize_t len\f[], \fIint options\f[])
.PP
Parse a CommonMark document in \f[I]buffer\f[] of length \f[I]len\f[]\&.
Returns a pointer to a tree of nodes.
.PP
-\fIcmark_node *\f[] \fBcmark_parse_file\f[](\fIFILE *f\f[], \fIlong options\f[])
+\fIcmark_node *\f[] \fBcmark_parse_file\f[](\fIFILE *f\f[], \fIint options\f[])
.PP
Parse a CommonMark document in file \f[I]f\f[], returning a pointer to
@@ -454,20 +454,20 @@ a tree of nodes.
Rendering
.PP
-\fIchar *\f[] \fBcmark_render_xml\f[](\fIcmark_node *root\f[], \fIlong options\f[])
+\fIchar *\f[] \fBcmark_render_xml\f[](\fIcmark_node *root\f[], \fIint options\f[])
.PP
Render a \f[I]node\f[] tree as XML.
.PP
-\fIchar *\f[] \fBcmark_render_html\f[](\fIcmark_node *root\f[], \fIlong options\f[])
+\fIchar *\f[] \fBcmark_render_html\f[](\fIcmark_node *root\f[], \fIint options\f[])
.PP
Render a \f[I]node\f[] tree as an HTML fragment. It is up to the user
to add an appropriate header and footer.
.PP
-\fIchar *\f[] \fBcmark_render_man\f[](\fIcmark_node *root\f[], \fIlong options\f[])
+\fIchar *\f[] \fBcmark_render_man\f[](\fIcmark_node *root\f[], \fIint options\f[])
.PP
Render a \f[I]node\f[] tree as a groff man page, without the header.