diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2014-10-25 01:03:52 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2014-10-25 01:03:52 +0000 |
commit | dd148a56f3f3e29132148b8f2bace859b7590d34 (patch) | |
tree | 5290383cf43df4fcf23e706458fc63fd96eb8cbf /libmandoc.h | |
parent | e3f177878d1b2ecad452ce2d7d08861420b2ffbb (diff) | |
download | mandoc-dd148a56f3f3e29132148b8f2bace859b7590d34.tar.gz |
integrate preconv(1) into mandoc(1);
enhances functionality and reduces code and docs by more than 300 lines
Diffstat (limited to 'libmandoc.h')
-rw-r--r-- | libmandoc.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libmandoc.h b/libmandoc.h index d74d1e20..027009db 100644 --- a/libmandoc.h +++ b/libmandoc.h @@ -30,6 +30,12 @@ enum rofferr { ROFF_ERR /* badness: puke and stop */ }; +struct buf { + char *buf; + size_t sz; + size_t offs; +}; + __BEGIN_DECLS struct roff; @@ -66,6 +72,9 @@ int man_endparse(struct man *); int man_addspan(struct man *, const struct tbl_span *); int man_addeqn(struct man *, const struct eqn *); +int preconv_cue(const struct buf *); +int preconv_encode(struct buf *, struct buf *, int *); + void roff_free(struct roff *); struct roff *roff_alloc(struct mparse *, int); void roff_reset(struct roff *); |