=================================================================== RCS file: /cvs/mandoc/Attic/private.h,v retrieving revision 1.1 retrieving revision 1.3 diff -u -p -r1.1 -r1.3 --- mandoc/Attic/private.h 2008/11/23 16:53:18 1.1 +++ mandoc/Attic/private.h 2008/11/24 08:50:33 1.3 @@ -1,4 +1,4 @@ -/* $Id: private.h,v 1.1 2008/11/23 16:53:18 kristaps Exp $ */ +/* $Id: private.h,v 1.3 2008/11/24 08:50:33 kristaps Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons * @@ -40,24 +40,24 @@ __BEGIN_DECLS typedef int (*md_init)(const struct md_args *, struct md_mbuf *, const struct md_rbuf *, void **); typedef int (*md_exit)(const struct md_args *, struct md_mbuf *, - const struct md_rbuf *, void *); + 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 **); int md_exit_html4_strict(const struct md_args *, struct md_mbuf *, const struct md_rbuf *, - void *); + int, void *); 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);