use some lists for score_t.
[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     int nelem, curnelem;
36     struct hash_elem **table;
37 } HASH;
38
39 #define hash_find(table, key) \
40     hash_find_hash(table, hash_string((unsigned char *)key, table->nelem), key)
41
42 #define hash_delete(table,key,data,destroy) \
43     hash_delete_hash(table, hash_string((unsigned char *)key, table->nelem), key, data, destroy)
44
45 HASH *hash_create(int nelem);
46 int hash_string(const unsigned char *s, int n);
47 int hash_insert(HASH *table, const char *key, void *data, int allow_dup);
48 HASH *hash_resize(HASH *table, int nelem);
49 void *hash_find_hash(const HASH *table, int hash, const char *key);
50 void hash_delete_hash(HASH *table, int hash, const char *key,
51                       const void *data, void (*destroy)(void *));
52 void hash_destroy(HASH **hash, void (*destroy)(void *));
53
54 void hash_map(HASH *table,
55               void (*mapfunc)(const char *key, void *data, unsigned long more),
56               unsigned long more);
57
58 #endif /* MUTT_LIB_LIB_HASH_H */