diff options
Diffstat (limited to 'libman.h')
-rw-r--r-- | libman.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -27,6 +27,8 @@ enum man_next { }; struct man { + void *data; + struct man_cb cb; void *htab; int flags; #define MAN_HALT (1 << 0) @@ -48,6 +50,8 @@ int man_macro(struct man *, int, int man_hash_find(const void *, const char *); void man_hash_free(void *); int man_macroend(struct man *); +int man_vwarn(struct man *, int, int, const char *, ...); +int man_verr(struct man *, int, int, const char *, ...); __END_DECLS |