From a8a944bd5211e82924dd2ba232f241d67d2b4055 Mon Sep 17 00:00:00 2001 From: Richard Wilson Date: Fri, 13 Oct 2006 15:09:30 +0000 Subject: Optimise and tidy up code. svn path=/trunk/netsurf/; revision=3002 --- utils/hashtable.h | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'utils/hashtable.h') diff --git a/utils/hashtable.h b/utils/hashtable.h index 567cc28a7..6a7d312b6 100644 --- a/utils/hashtable.h +++ b/utils/hashtable.h @@ -13,16 +13,7 @@ #include -struct hash_entry { - char *key; - char *value; - struct hash_entry *next; -}; - -struct hash_table { - unsigned int nchains; - struct hash_entry **chain; -}; +struct hash_table; struct hash_table *hash_create(unsigned int chains); void hash_destroy(struct hash_table *ht); -- cgit v1.2.3