diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-11-24 08:50:33 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-11-24 08:50:33 +0000 |
commit | a73f55c2be0ca8e1deeeb05389879a52e46f05d2 (patch) | |
tree | 9de602ac0c0ccee942761e17a89860e2fb6f14a7 /private.h | |
parent | 611a34a4d07b298d01d77338ee3a7bd338016054 (diff) | |
download | mandoc-a73f55c2be0ca8e1deeeb05389879a52e46f05d2.tar.gz |
Roff-line tokens parsed into char**.
Diffstat (limited to 'private.h')
-rw-r--r-- | private.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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); |