aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/term.h
diff options
context:
space:
mode:
Diffstat (limited to 'term.h')
-rw-r--r--term.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/term.h b/term.h
index 21e2b2d5..444423ed 100644
--- a/term.h
+++ b/term.h
@@ -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 <kristaps@kth.se>
*
@@ -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