aboutsummaryrefslogtreecommitdiffstatshomepage
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
commit314ca44f160b0c1b8bf73bc7c4157ca07db5da8a (patch)
treebb5cf4327cf95993a869cbffb6cb0f9c67173941 /private.h
parent7d393d45bdff6d0d4a4742e71d0c6997150410be (diff)
downloadmandoc-314ca44f160b0c1b8bf73bc7c4157ca07db5da8a.tar.gz
mandoc-314ca44f160b0c1b8bf73bc7c4157ca07db5da8a.tar.zst
mandoc-314ca44f160b0c1b8bf73bc7c4157ca07db5da8a.zip
Versioning up.
Diffstat (limited to 'private.h')
-rw-r--r--private.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/private.h b/private.h
index 5e0a3f82..8ee39dd6 100644
--- a/private.h
+++ b/private.h
@@ -1,4 +1,4 @@
-/* $Id: private.h,v 1.36 2008/12/10 10:43:57 kristaps Exp $ */
+/* $Id: private.h,v 1.37 2008/12/10 12:05:33 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -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