aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/private.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2008-12-03 19:21:58 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2008-12-03 19:21:58 +0000
commitc68b04faf73c1216350e7e0ad7502734a8cfc21c (patch)
tree23e1dc762eef7a180fc1d6480d5fcc355572deb6 /private.h
parent268539aa79db4cc8381940023764b3d53c9d8c26 (diff)
downloadmandoc-c68b04faf73c1216350e7e0ad7502734a8cfc21c.tar.gz
mandoc-c68b04faf73c1216350e7e0ad7502734a8cfc21c.tar.zst
mandoc-c68b04faf73c1216350e7e0ad7502734a8cfc21c.zip
Major update.
Diffstat (limited to 'private.h')
-rw-r--r--private.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/private.h b/private.h
index 2f3d4cda..53710f0c 100644
--- a/private.h
+++ b/private.h
@@ -1,4 +1,4 @@
-/* $Id: private.h,v 1.24 2008/12/03 14:39:59 kristaps Exp $ */
+/* $Id: private.h,v 1.25 2008/12/03 19:21:58 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -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 **);
};