summaryrefslogtreecommitdiffstatshomepage
path: root/term.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-02-24 16:16:45 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-02-24 16:16:45 +0000
commit41abdca0a25e1aa6d4a90432abb97b1f5d036ddf (patch)
tree443533d7dda28b65dbf38a006350495e35658fbf /term.h
parentc87a07532da610224c11be712ee9d340ca5e1e80 (diff)
downloadmandoc-41abdca0a25e1aa6d4a90432abb97b1f5d036ddf.tar.gz
mandoc-41abdca0a25e1aa6d4a90432abb97b1f5d036ddf.tar.zst
mandoc-41abdca0a25e1aa6d4a90432abb97b1f5d036ddf.zip
Raft of mdocterm callbacks in place.
Fixed Fo/Fc handling in validate/mdocterm.
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