summaryrefslogtreecommitdiff
path: root/usr.bin/mandoc/term.h
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@cvs.openbsd.org>2009-10-19 09:16:59 +0000
committerIngo Schwarze <schwarze@cvs.openbsd.org>2009-10-19 09:16:59 +0000
commit34c62bf577e58494a05bd78594815a1badd57985 (patch)
tree314f64a55063442017d0b088921a51cc8dcf7e57 /usr.bin/mandoc/term.h
parent85dd4e6459ee1b701693106667f4a9869ded6571 (diff)
sync to 1.9.5: partial rewrite of special character and predefined string
tables and the supporting infrastructure, mostly in preparation for HTML output support
Diffstat (limited to 'usr.bin/mandoc/term.h')
-rw-r--r--usr.bin/mandoc/term.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/usr.bin/mandoc/term.h b/usr.bin/mandoc/term.h
index 618e6eb4818..61e5a5a3876 100644
--- a/usr.bin/mandoc/term.h
+++ b/usr.bin/mandoc/term.h
@@ -1,4 +1,4 @@
-/* $Id: term.h,v 1.10 2009/09/21 20:28:43 schwarze Exp $ */
+/* $Id: term.h,v 1.11 2009/10/19 09:16:58 schwarze Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -20,9 +20,7 @@
__BEGIN_DECLS
enum termenc {
- TERMENC_ASCII,
- TERMENC_LATIN1, /* Not implemented. */
- TERMENC_UTF8 /* Not implemented. */
+ TERMENC_ASCII
};
struct termp {
@@ -50,11 +48,6 @@ struct termp {
void *symtab; /* Encoded-symbol table. */
};
-void *term_ascii2htab(void);
-const char *term_a2ascii(void *, const char *, size_t, size_t *);
-const char *term_a2res(void *, const char *, size_t, size_t *);
-void term_asciifree(void *);
-
void term_newln(struct termp *);
void term_vspace(struct termp *);
void term_word(struct termp *, const char *);