aboutsummaryrefslogtreecommitdiffstatshomepage
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
commit36357815a1c201ab63ccb1bfafe72be231d6aac4 (patch)
treef08d96eb23d5d8183c810961a04ab1a06f7578ff /private.h
parent9ace2b1f113399d0b520fca84718ec7862abc61f (diff)
downloadmandoc-36357815a1c201ab63ccb1bfafe72be231d6aac4.tar.gz
mandoc-36357815a1c201ab63ccb1bfafe72be231d6aac4.tar.zst
mandoc-36357815a1c201ab63ccb1bfafe72be231d6aac4.zip
Roff-line tokens parsed into char**.
Diffstat (limited to 'private.h')
-rw-r--r--private.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/private.h b/private.h
index db38ef8a..42c74aeb 100644
--- a/private.h
+++ b/private.h
@@ -1,4 +1,4 @@
-/* $Id: private.h,v 1.2 2008/11/23 22:30:53 kristaps Exp $ */
+/* $Id: private.h,v 1.3 2008/11/24 08:50:33 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -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);