diff options
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 *); |