summaryrefslogtreecommitdiffstats
path: root/libmandoc.h
diff options
context:
space:
mode:
Diffstat (limited to 'libmandoc.h')
-rw-r--r--libmandoc.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/libmandoc.h b/libmandoc.h
index f7a54f2b..2cdd1095 100644
--- a/libmandoc.h
+++ b/libmandoc.h
@@ -19,12 +19,16 @@
__BEGIN_DECLS
-int mandoc_special(char *);
-char *mandoc_strdup(const char *);
-char *mandoc_getarg(char **, mandocmsg, void *, int, int *);
-char *mandoc_normdate(char *, mandocmsg, void *, int, int);
-int mandoc_eos(const char *, size_t, int);
-int mandoc_hyph(const char *, const char *);
+void mandoc_msg(enum mandocerr, struct mparse *,
+ int, int, const char *);
+void mandoc_vmsg(enum mandocerr, struct mparse *,
+ int, int, const char *, ...);
+int mandoc_special(char *);
+char *mandoc_strdup(const char *);
+char *mandoc_getarg(struct mparse *, char **, int, int *);
+char *mandoc_normdate(struct mparse *, char *, int, int);
+int mandoc_eos(const char *, size_t, int);
+int mandoc_hyph(const char *, const char *);
__END_DECLS