diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-11-30 21:41:35 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-11-30 21:41:35 +0000 |
commit | 049cc4aa4e4a294608c81ec192c2c6b046944a43 (patch) | |
tree | 82eaeede8c3a0411dda066e23560152c72e22626 /private.h | |
parent | ffefeb2100c9c3849c0cbb7d2b2fe3004d7db057 (diff) | |
download | mandoc-049cc4aa4e4a294608c81ec192c2c6b046944a43.tar.gz |
Preliminary xml output filter (validate-renamed) done.
Diffstat (limited to 'private.h')
-rw-r--r-- | private.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -213,7 +213,7 @@ struct roffcb { const char *, const char *, char *); int (*roffhead)(void *); int (*rofftail)(void *); - int (*roffin)(void *, int, int, int *, char **); + int (*roffin)(void *, int, int *, char **); int (*roffdata)(void *, int, char *); int (*roffout)(void *, int); int (*roffblkin)(void *, int, int *, char **); @@ -233,10 +233,10 @@ void *md_init_html4_strict(const struct md_args *, int md_line_html4_strict(void *, char *); int md_exit_html4_strict(void *, int); -void *md_init_valid(const struct md_args *, +void *md_init_xml(const struct md_args *, struct md_mbuf *, const struct md_rbuf *); -int md_line_valid(void *, char *); -int md_exit_valid(void *, int); +int md_line_xml(void *, char *); +int md_exit_xml(void *, int); int md_buf_puts(struct md_mbuf *, const char *, size_t); int md_buf_putchar(struct md_mbuf *, char); |