diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-02-24 16:16:45 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-02-24 16:16:45 +0000 |
commit | 67f1948113ec6a04bab25fb2e4c0a6914ddc6c14 (patch) | |
tree | d21937a396c15f699ae0dfaeb53d43ac673946fb /term.h | |
parent | 0a74490582c1c8f34566e9e4b5b980d88faa8da8 (diff) | |
download | mandoc-67f1948113ec6a04bab25fb2e4c0a6914ddc6c14.tar.gz |
Raft of mdocterm callbacks in place.
Fixed Fo/Fc handling in validate/mdocterm.
Diffstat (limited to 'term.h')
-rw-r--r-- | term.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -49,9 +49,6 @@ struct termact { const struct mdoc_node *); }; -void termprint(const struct mdoc_node *, - const struct mdoc_meta *); - void newln(struct termp *); void vspace(struct termp *); void word(struct termp *, const char *); @@ -59,6 +56,10 @@ void flushln(struct termp *); void transcode(struct termp *, const char *, size_t); +void subtree(struct termp *, + const struct mdoc_meta *, + const struct mdoc_node *); + const struct termact *termacts; __END_DECLS |