summaryrefslogtreecommitdiffstatshomepage
path: root/private.h
diff options
context:
space:
mode:
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