2 * Copyright (C) 1996-2009 Michael R. Elkins <me@mutt.org>
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
26 struct hash_elem *next;
32 struct hash_elem **table;
33 unsigned int (*hash_string)(const unsigned char *, unsigned int);
34 int (*cmp_string)(const char *, const char *);
38 #define hash_find(table, key) hash_find_hash(table, table->hash_string ((unsigned char *)key, table->nelem), key)
40 #define hash_delete(table,key,data,destroy) hash_delete_hash(table, table->hash_string ((unsigned char *)key, table->nelem), key, data, destroy)
42 HASH *hash_create (int nelem, int lower);
43 int hash_insert (HASH * table, const char *key, void *data, int allow_dup);
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 *));