chiark / gitweb /
url: Whitespace cleanups.
[mLib] / unihash.h
index dfc5b796163ff95d8a616d0146b9ba0905946fcb..f6c19b1991ac0fe5492dac81de89e44d55c1c349 100644 (file)
--- a/unihash.h
+++ b/unihash.h
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: unihash.h,v 1.2 2003/12/14 14:45:30 mdw Exp $
+ * $Id: unihash.h,v 1.4 2004/04/08 01:36:13 mdw Exp $
  *
  * Simple and efficient universal hashing for hashtables
  *
  * MA 02111-1307, USA.
  */
 
-/*----- Revision history --------------------------------------------------* 
- *
- * $Log: unihash.h,v $
- * Revision 1.2  2003/12/14 14:45:30  mdw
- * Test universal hashing and fix bugs.
- *
- * Revision 1.1  2003/10/12 14:43:24  mdw
- * Universal hashing.
- *
- */
-
 #ifndef MLIB_UNIHASH_H
 #define MLIB_UNIHASH_H
 
@@ -138,6 +127,10 @@ typedef struct unihash_info {
   uint32 s[UNIHASH_NBATCH][4][256];    /* S-tables as described */
 } unihash_info;
 
+/*----- A global hash-info table ------------------------------------------*/
+
+extern unihash_info unihash_global;    /* Key this if you like */
+
 /*----- Functions provided ------------------------------------------------*/
 
 /* --- @unihash_setkey@ --- *