diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-12-05 17:43:14 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-12-05 17:43:14 +0000 |
commit | 57ed1544ce7edde6d0812e0c870f03e6b1e7204f (patch) | |
tree | f0901e95a0cbbd7383ebde2739459cdba0e7c8da /xml.c | |
parent | a4880c4fea2cc33d9168cb96bc44c1b3670ef402 (diff) | |
download | mandoc-57ed1544ce7edde6d0812e0c870f03e6b1e7204f.tar.gz |
*** empty log message ***
Diffstat (limited to 'xml.c')
-rw-r--r-- | xml.c | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -24,10 +24,10 @@ #include "ml.h" -static ssize_t xml_endtag(struct md_mbuf *, +static ssize_t xml_endtag(struct md_mbuf *, void *, const struct md_args *, enum md_ns, int); -static ssize_t xml_begintag(struct md_mbuf *, +static ssize_t xml_begintag(struct md_mbuf *, void *, const struct md_args *, enum md_ns, int, const int *, const char **); @@ -77,9 +77,9 @@ xml_end(struct md_mbuf *mbuf, const struct md_args *args) /* ARGSUSED */ static ssize_t -xml_begintag(struct md_mbuf *mbuf, const struct md_args *args, - enum md_ns ns, int tok, - const int *argc, const char **argv) +xml_begintag(struct md_mbuf *mbuf, void *data, + const struct md_args *args, enum md_ns ns, + int tok, const int *argc, const char **argv) { size_t res; @@ -117,8 +117,8 @@ xml_begintag(struct md_mbuf *mbuf, const struct md_args *args, /* ARGSUSED */ static ssize_t -xml_endtag(struct md_mbuf *mbuf, const struct md_args *args, - enum md_ns ns, int tok) +xml_endtag(struct md_mbuf *mbuf, void *data, + const struct md_args *args, enum md_ns ns, int tok) { size_t res; @@ -173,7 +173,7 @@ md_init_xml(const struct md_args *args, struct md_mbuf *mbuf, const struct md_rbuf *rbuf) { - return(mlg_alloc(args, rbuf, mbuf, xml_begintag, + return(mlg_alloc(args, NULL, rbuf, mbuf, xml_begintag, xml_endtag, xml_begin, xml_end)); } |