chiark / gitweb /
Fix README and mLib.3 a bit.
[mLib] / hash.h
diff --git a/hash.h b/hash.h
index 6d739a7f62664eb2f433383a7e30413e14fef446..b7ad04de45eb6dcb647242daf19be78ecc3e25ef 100644 (file)
--- a/hash.h
+++ b/hash.h
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: hash.h,v 1.1 1999/08/02 14:45:48 mdw Exp $
+ * $Id: hash.h,v 1.4 2004/04/08 01:36:11 mdw Exp $
  *
  * General hashtable infrastructure
  *
  * MA 02111-1307, USA.
  */
 
-/*----- Revision history --------------------------------------------------* 
- *
- * $Log: hash.h,v $
- * Revision 1.1  1999/08/02 14:45:48  mdw
- * Break low-level hashtable code out from sym.
- *
- */
-
-#ifndef HASH_H
-#define HASH_H
+#ifndef MLIB_HASH_H
+#define MLIB_HASH_H
 
 #ifdef __cplusplus
   extern "C" {
 
 #include <stddef.h>
 
-#ifndef BITS_H
+#ifndef MLIB_ARENA_H
+#  include "arena.h"
+#endif
+
+#ifndef MLIB_BITS_H
 #  include "bits.h"
 #endif
 
@@ -69,6 +65,7 @@
 typedef struct hash_table {
   uint32 mask;                         /* Bit mask of hash bits */
   struct hash_base **v;                        /* Vector of hash bins */
+  arena *a;                            /* Allocation arena */
 } hash_table;
 
 /* --- A hashtable entry --- *