diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-06-07 10:52:44 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-06-07 10:52:44 +0000 |
commit | bc3089425f6b3a43c2898c28f960f5a313c05ebe (patch) | |
tree | 90e922cb05b24707a53bfbca9db61f220ea19182 /main.h | |
parent | db7e43f14579272d3f0f3b85346bfb0e957dacee (diff) | |
download | mandoc-bc3089425f6b3a43c2898c28f960f5a313c05ebe.tar.gz |
Add -Owidth=width option to mandoc -Tascii. Asked for by joerg@ about a
thousand years ago. Note that this is normalised to >=60.
Diffstat (limited to 'main.h')
-rw-r--r-- | main.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -22,6 +22,9 @@ __BEGIN_DECLS struct mdoc; struct man; +#define UNCONST(a) ((void *)(uintptr_t)(const void *)(a)) + + /* * Definitions for main.c-visible output device functions, e.g., -Thtml * and -Tascii. Note that ascii_alloc() is named as such in @@ -38,7 +41,7 @@ void html_free(void *); void tree_mdoc(void *, const struct mdoc *); void tree_man(void *, const struct man *); -void *ascii_alloc(size_t); +void *ascii_alloc(char *); void terminal_mdoc(void *, const struct mdoc *); void terminal_man(void *, const struct man *); void terminal_free(void *); |