summaryrefslogtreecommitdiffstats
path: root/private.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2008-11-24 08:50:33 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2008-11-24 08:50:33 +0000
commita73f55c2be0ca8e1deeeb05389879a52e46f05d2 (patch)
tree9de602ac0c0ccee942761e17a89860e2fb6f14a7 /private.h
parent611a34a4d07b298d01d77338ee3a7bd338016054 (diff)
downloadmandoc-a73f55c2be0ca8e1deeeb05389879a52e46f05d2.tar.gz
Roff-line tokens parsed into char**.
Diffstat (limited to 'private.h')
-rw-r--r--private.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/private.h b/private.h
index 8231037f..7d166667 100644
--- a/private.h
+++ b/private.h
@@ -43,11 +43,11 @@ typedef int (*md_exit)(const struct md_args *, struct md_mbuf *,
const struct md_rbuf *, int, void *);
typedef int (*md_line)(const struct md_args *,
struct md_mbuf *, const struct md_rbuf *,
- const char *, size_t, void *);
+ char *, size_t, void *);
int md_line_html4_strict(const struct md_args *,
struct md_mbuf *, const struct md_rbuf *,
- const char *, size_t, void *);
+ char *, size_t, void *);
int md_init_html4_strict(const struct md_args *,
struct md_mbuf *, const struct md_rbuf *,
void **);
@@ -57,7 +57,7 @@ int md_exit_html4_strict(const struct md_args *,
int md_line_dummy(const struct md_args *,
struct md_mbuf *, const struct md_rbuf *,
- const char *, size_t, void *);
+ char *, size_t, void *);
int md_buf_puts(struct md_mbuf *, const char *, size_t);
int md_buf_putchar(struct md_mbuf *, char);