diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-18 13:34:16 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-18 13:34:16 +0000 |
commit | 3415d08a3770d6230f784e7a7f2a11e555d18fae (patch) | |
tree | 4b5265d25450e7ddbcef067ae64470c3e03934ea /term.h | |
parent | 3bb28bd52ee8e4f2384f550bdc6f9eb7f58a67ec (diff) | |
download | mandoc-3415d08a3770d6230f784e7a7f2a11e555d18fae.tar.gz |
Arbitrary horizontal and vertical scaling widths now handled by -mdoc -Tascii.
Terminal scaling backend pushed into term.c.
Diffstat (limited to 'term.h')
-rw-r--r-- | term.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -53,6 +53,9 @@ void term_vspace(struct termp *); void term_word(struct termp *, const char *); void term_flushln(struct termp *); +int a2width(const char *); +int a2height(const char *); + __END_DECLS #endif /*!TERM_H*/ |