summaryrefslogtreecommitdiffstats
path: root/private.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2008-12-07 22:40:18 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2008-12-07 22:40:18 +0000
commitd89b4351886e0c796e213dd54eff3b53d868c4b0 (patch)
tree903b3e85715e5ef981930b917f6c644a5a376ac5 /private.h
parentcbf4b23303e5c63578526fbe6fa0a5d8eb493fba (diff)
downloadmandoc-d89b4351886e0c796e213dd54eff3b53d868c4b0.tar.gz
*** empty log message ***
Diffstat (limited to 'private.h')
-rw-r--r--private.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/private.h b/private.h
index a6778063..e02e9701 100644
--- a/private.h
+++ b/private.h
@@ -248,21 +248,21 @@ enum roffmsg { ROFF_WARN, ROFF_ERROR };
struct roffcb {
void (*roffmsg)(void *, enum roffmsg,
- const char *, const char *, char *);
+ const char *, const char *, const char *);
int (*roffhead)(void *, const struct tm *, const char *,
const char *, const char *, const char *);
int (*rofftail)(void *);
- int (*roffdata)(void *, int, const char *, char *);
- int (*roffin)(void *, int, int *, char **);
+ int (*roffdata)(void *, int, const char *, const char *);
+ int (*roffin)(void *, int, int *, const char **);
int (*roffout)(void *, int);
- int (*roffblkin)(void *, int, int *, char **);
+ int (*roffblkin)(void *, int, int *, const char **);
int (*roffblkout)(void *, int);
- int (*roffblkheadin)(void *, int, int *, char **);
+ int (*roffblkheadin)(void *, int, int *, const char **);
int (*roffblkheadout)(void *, int);
- int (*roffblkbodyin)(void *, int, int *, char **);
+ int (*roffblkbodyin)(void *, int, int *, const char **);
int (*roffblkbodyout)(void *, int);
int (*roffspecial)(void *, int, const char *,
- const int *, const char **, char **);
+ const int *, const char **, const char **);
};
struct rofftree;