summaryrefslogtreecommitdiffstats
path: root/hash.h
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-09-13 15:26:52 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-09-13 15:26:52 +0000
commit2fe89e82d26131cabbe9c9676608d1b72d3c1af0 (patch)
treed77d43b0c2ff8f33f4d512621f78d3c455f1d4a4 /hash.h
parent439510c9447bf27162f7fc02687c155b0103c502 (diff)
This patch adds on-demand loading of character set tables,
changes the default location of $SHAREDIR, and fixes some compilation problems occuring on machines without PGP installed.
Diffstat (limited to 'hash.h')
-rw-r--r--hash.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/hash.h b/hash.h
index a0757c6b..bc079a11 100644
--- a/hash.h
+++ b/hash.h
@@ -16,6 +16,9 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+#ifndef _HASH_H
+#define _HASH_H
+
struct hash_elem
{
const char *key;
@@ -41,3 +44,5 @@ void *hash_find_hash (const HASH * table, int hash, const char *key);
void hash_delete_hash (HASH * table, int hash, const char *key, const void *data,
void (*destroy) (void *));
void hash_destroy (HASH ** hash, void (*destroy) (void *));
+
+#endif