summaryrefslogtreecommitdiffstats
path: root/main.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-06-07 10:52:44 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-06-07 10:52:44 +0000
commitbc3089425f6b3a43c2898c28f960f5a313c05ebe (patch)
tree90e922cb05b24707a53bfbca9db61f220ea19182 /main.h
parentdb7e43f14579272d3f0f3b85346bfb0e957dacee (diff)
downloadmandoc-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.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/main.h b/main.h
index 20ed51ec..45c092e9 100644
--- a/main.h
+++ b/main.h
@@ -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 *);