Rocco Rutte:
[apps/madmutt.git] / hash.h
1 /*
2  * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
3  *
4  *     This program is free software; you can redistribute it and/or modify
5  *     it under the terms of the GNU General Public License as published by
6  *     the Free Software Foundation; either version 2 of the License, or
7  *     (at your option) any later version.
8  * 
9  *     This program is distributed in the hope that it will be useful,
10  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *     GNU General Public License for more details.
13  * 
14  *     You should have received a copy of the GNU General Public License
15  *     along with this program; if not, write to the Free Software
16  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
17  */
18
19 #ifndef _HASH_H
20 #define _HASH_H
21
22 struct hash_elem
23 {
24   const char *key;
25   void *data;
26   struct hash_elem *next;
27 };
28
29 typedef struct
30 {
31   int nelem, curnelem;
32   struct hash_elem **table;
33 }
34 HASH;
35
36 #define hash_find(table, key) hash_find_hash(table, hash_string ((unsigned char *)key, table->nelem), key)
37
38 #define hash_delete(table,key,data,destroy) hash_delete_hash(table, hash_string ((unsigned char *)key, table->nelem), key, data, destroy)
39
40 HASH *hash_create (int nelem);
41 int hash_string (const unsigned char *s, int n);
42 int hash_insert (HASH * table, const char *key, void *data, int allow_dup);
43 HASH *hash_resize (HASH * table, int nelem);
44 void *hash_find_hash (const HASH * table, int hash, const char *key);
45 void hash_delete_hash (HASH * table, int hash, const char *key, const void *data,
46                        void (*destroy) (void *));
47 void hash_destroy (HASH ** hash, void (*destroy) (void *));
48
49 #endif