From 60e35d64ece3aeaabb2d0c25b9ab5c651c0bb48d Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sat, 21 Feb 2009 21:00:06 +0000 Subject: Split mdocml -> mdocterm, mdoctree (new manuals, etc.). Escape-recognition term.c. --- term.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'term.h') diff --git a/term.h b/term.h index 65491597..c8d6274a 100644 --- a/term.h +++ b/term.h @@ -42,15 +42,20 @@ struct termact { int (*pre)(struct termp *, const struct mdoc_meta *, const struct mdoc_node *); - int (*post)(struct termp *, + void (*post)(struct termp *, const struct mdoc_meta *, 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 *); void flushln(struct termp *); +void transcode(struct termp *, + const char *, size_t); const struct termact *termacts; -- cgit