diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-05-17 14:38:34 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-05-17 14:38:34 +0000 |
commit | ae85c53a20e295bcb9eecc8a2d24955c35392839 (patch) | |
tree | 7d3d87904670286bd0a6abf5b99ccafe1e05cbfa /main.h | |
parent | 7585ce47e0934f9b0eabd76bf7000d02950e6e1c (diff) | |
download | mandoc-ae85c53a20e295bcb9eecc8a2d24955c35392839.tar.gz |
Add mode for -Tlocale. This mode, with this commit, behaves exactly
like -Tascii. While adding this, inline term_alloc() (was a one-liner),
remove some switches around the terminal encoding for the symbol table
(unnecessary), and split out ascii_alloc() into ascii_init(), which is
also called from locale_init().
Diffstat (limited to 'main.h')
-rw-r--r-- | main.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -41,6 +41,7 @@ void html_free(void *); void tree_mdoc(void *, const struct mdoc *); void tree_man(void *, const struct man *); +void *locale_alloc(char *); void *ascii_alloc(char *); void ascii_free(void *); |