-#include "man.h"
-#include "mdoc.h"
-
-extern int man_run(struct termp *,
- const struct man *);
-extern int mdoc_run(struct termp *,
- const struct mdoc *);
-
-static struct termp *term_alloc(enum termenc);
-static void term_free(struct termp *);
-static void term_pword(struct termp *, const char *, int);
-static void term_pescape(struct termp *,
- const char *, int *, int);
-static void term_nescape(struct termp *,
- const char *, size_t);
-static void term_chara(struct termp *, char);
-static void term_encodea(struct termp *, char);
-static int term_isopendelim(const char *, int);
-static int term_isclosedelim(const char *, int);
-
-
-void *
-ascii_alloc(void)
-{
-
- return(term_alloc(TERMENC_ASCII));
-}
-