diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-12-03 19:21:58 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-12-03 19:21:58 +0000 |
commit | c67723cb5220a19191e6836e53b8d0a489c86797 (patch) | |
tree | e75720ca8fbbb4d7f4a0ed25af3ab2b2ecf392b3 /private.h | |
parent | ac4bc07079be4963163734d67749697140f23b4b (diff) | |
download | mandoc-c67723cb5220a19191e6836e53b8d0a489c86797.tar.gz |
Major update.
Diffstat (limited to 'private.h')
-rw-r--r-- | private.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -215,11 +215,15 @@ struct roffcb { const char *, const char *, char *); int (*roffhead)(void *); int (*rofftail)(void *); - int (*roffin)(void *, int, int *, char **); int (*roffdata)(void *, int, char *); + int (*roffin)(void *, int, int *, char **); int (*roffout)(void *, int); int (*roffblkin)(void *, int, int *, char **); int (*roffblkout)(void *, int); + int (*roffblkheadin)(void *, int, int *, char **); + int (*roffblkheadout)(void *, int); + int (*roffblkbodyin)(void *, int, int *, char **); + int (*roffblkbodyout)(void *, int); int (*roffspecial)(void *, int, int *, char **, char **); }; |