]> git.cameronkatri.com Git - mandoc.git/blobdiff - libman.h
Fix in -Tascii where `Lb' causes line-break in any section (should only happen in...
[mandoc.git] / libman.h
index 1ccbe9ffad648451616c918a721fb95453cf9a62..0accc35c0ada5eaaf122f74279ea69f06d61186a 100644 (file)
--- a/libman.h
+++ b/libman.h
@@ -1,4 +1,4 @@
-/*     $Id: libman.h,v 1.20 2009/08/21 13:14:07 kristaps Exp $ */
+/*     $Id: libman.h,v 1.21 2009/09/16 14:40:56 kristaps Exp $ */
 /*
  * Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -27,7 +27,6 @@ enum  man_next {
 struct man {
        void            *data;
        struct man_cb    cb;
-       void            *htab;
        int              pflags;
        int              flags;
 #define        MAN_HALT        (1 << 0)
@@ -95,9 +94,8 @@ int             man_body_alloc(struct man *, int, int, int);
 int              man_elem_alloc(struct man *, int, int, int);
 void             man_node_free(struct man_node *);
 void             man_node_freelist(struct man_node *);
-void            *man_hash_alloc(void);
-int              man_hash_find(const void *, const char *);
-void             man_hash_free(void *);
+void             man_hash_init(void);
+int              man_hash_find(const char *);
 int              man_macroend(struct man *);
 int              man_args(struct man *, int, int *, char *, char **);
 #define        ARGS_ERROR      (-1)