summaryrefslogtreecommitdiff
path: root/module/hash.h
diff options
context:
space:
mode:
authorStef Walter <stefw@collabora.co.uk>2011-01-26 12:46:14 -0600
committerStef Walter <stefw@collabora.co.uk>2011-01-26 12:46:14 -0600
commit4375e297b19bc2177e17cc5616e75d96be053328 (patch)
treee62b542ae6bb600332912e14c480270709934760 /module/hash.h
parentf8009b4d504de0ed752b867893acd263108409e0 (diff)
Add testing and start testing hash table functionality.
Diffstat (limited to 'module/hash.h')
-rw-r--r--module/hash.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/module/hash.h b/module/hash.h
index 8649ed5..eb3c496 100644
--- a/module/hash.h
+++ b/module/hash.h
@@ -174,6 +174,11 @@ unsigned int hash_ulongptr_hash (const void *to_ulong);
int hash_ulongptr_equal (const void *ulong_one,
const void *ulong_two);
+unsigned int hash_intptr_hash (const void *to_int);
+
+int hash_intptr_equal (const void *int_one,
+ const void *int_two);
+
unsigned int hash_direct_hash (const void *ptr);
int hash_direct_equal (const void *ptr_one,