diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-12-10 14:42:45 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-12-10 14:42:45 +0000 |
commit | 350d36572cedb93c55d10aff73c3a7bb54fef52e (patch) | |
tree | 81bb8cb1742c69702386bd5200230a907f67f318 /private.h | |
parent | e4c3f51da30c67c5fb30b0b90af2f55a8631af37 (diff) | |
download | mandoc-350d36572cedb93c55d10aff73c3a7bb54fef52e.tar.gz |
Made noop the default filter.
Diffstat (limited to 'private.h')
-rw-r--r-- | private.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -376,6 +376,10 @@ void *md_init_html(const struct md_args *, struct md_mbuf *, const struct md_rbuf *); int md_line_html(void *, char *); int md_exit_html(void *, int); +void *md_init_noop(const struct md_args *, + struct md_mbuf *, const struct md_rbuf *); +int md_line_noop(void *, char *); +int md_exit_noop(void *, int); void *md_init_xml(const struct md_args *, struct md_mbuf *, const struct md_rbuf *); int md_line_xml(void *, char *); |