=================================================================== RCS file: /cvs/mandoc/term.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mandoc/term.h 2009/02/22 19:23:48 1.4 +++ mandoc/term.h 2009/02/24 16:16:45 1.5 @@ -1,4 +1,4 @@ -/* $Id: term.h,v 1.4 2009/02/22 19:23:48 kristaps Exp $ */ +/* $Id: term.h,v 1.5 2009/02/24 16:16:45 kristaps Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons * @@ -49,15 +49,16 @@ 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 *); 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;