summaryrefslogtreecommitdiffstats
path: root/private.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2008-12-10 12:05:33 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2008-12-10 12:05:33 +0000
commit349718f4b8e31663549686fa17aa489c79d94cf3 (patch)
tree27b9c9e5c7230f3492d187b433417c556b48b115 /private.h
parentf78e525bbf6c4d6f545d78949778d95f5dfaa55f (diff)
downloadmandoc-349718f4b8e31663549686fa17aa489c79d94cf3.tar.gz
Versioning up.
Diffstat (limited to 'private.h')
-rw-r--r--private.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/private.h b/private.h
index 117ca2d3..d37f6994 100644
--- a/private.h
+++ b/private.h
@@ -346,7 +346,8 @@ struct roffcb {
const char *, const char *, const char *);
int (*roffhead)(void *, const struct tm *, const char *,
const char *, enum roffmsec, enum roffvol);
- int (*rofftail)(void *);
+ int (*rofftail)(void *, const struct tm *, const char *,
+ const char *, enum roffmsec, enum roffvol);
int (*roffdata)(void *, int, const char *, const char *);
int (*roffin)(void *, int, int *, const char **);
int (*roffout)(void *, int);
@@ -391,6 +392,7 @@ enum roffmsec roff_msec(const char *);
int roff_sec(const char **);
enum roffatt roff_att(const char *);
enum roffvol roff_vol(const char *);
+char *roff_volname(enum roffvol);
__END_DECLS