diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-11-25 12:14:02 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-11-25 12:14:02 +0000 |
commit | 6b6936f94277056de963ce05d2dbd24e55ba6bed (patch) | |
tree | d7f1a0edba68ff98aeff2adb77c5f19ad9ae92c8 /html4_strict.c | |
parent | 808720d8960317a700e6430d570b49ceffceab47 (diff) | |
download | mandoc-6b6936f94277056de963ce05d2dbd24e55ba6bed.tar.gz |
Single call-back for filters.
Removed verbose flag.
Added more macros and arguments.
Diffstat (limited to 'html4_strict.c')
-rw-r--r-- | html4_strict.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/html4_strict.c b/html4_strict.c index 2cd61e36..68a02730 100644 --- a/html4_strict.c +++ b/html4_strict.c @@ -23,6 +23,7 @@ #include "private.h" +/* ARGSUSED */ int md_line_html4_strict(void *data, char *buf, size_t sz) { @@ -31,6 +32,7 @@ md_line_html4_strict(void *data, char *buf, size_t sz) } +/* ARGSUSED */ int md_exit_html4_strict(void *data, int flush) { @@ -39,6 +41,7 @@ md_exit_html4_strict(void *data, int flush) } +/* ARGSUSED */ void * md_init_html4_strict(const struct md_args *args, struct md_mbuf *mbuf, const struct md_rbuf *rbuf) |