diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-12-04 11:25:29 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-12-04 11:25:29 +0000 |
commit | bbaed73e9a14101e88d84225a902613116c536e9 (patch) | |
tree | 541891d0a3f52c023f0304922909e40b533d4204 /xml.c | |
parent | f0f40906a39936e2d4cd4ddcb8bf4bdb33c2da08 (diff) | |
download | mandoc-bbaed73e9a14101e88d84225a902613116c536e9.tar.gz |
More html-css.
Diffstat (limited to 'xml.c')
-rw-r--r-- | xml.c | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -31,15 +31,21 @@ static ssize_t xml_begintag(struct md_mbuf *, const struct md_args *, enum md_ns, int, const int *, const char **); -static int xml_begin(struct md_mbuf *, - const struct md_args *); +static int xml_begin(struct md_mbuf *, + const struct md_args *, + const struct tm *, + const char *, const char *, + const char *, const char *); static int xml_end(struct md_mbuf *, const struct md_args *); /* ARGSUSED */ static int -xml_begin(struct md_mbuf *mbuf, const struct md_args *args) +xml_begin(struct md_mbuf *mbuf, const struct md_args *args, + const struct tm *tm, const char *os, + const char *title, const char *section, + const char *vol) { size_t res; |