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