summaryrefslogtreecommitdiff
path: root/hash.h
diff options
context:
space:
mode:
Diffstat (limited to 'hash.h')
-rw-r--r--hash.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/hash.h b/hash.h
new file mode 100644
index 0000000..268c5dc
--- /dev/null
+++ b/hash.h
@@ -0,0 +1,9 @@
+#ifndef __HASH_H
+#define __HASH_H
+
+unsigned char pearson(const void *d, size_t len);
+uint64_t pearson_64(const void *d, size_t len);
+uint64_t fnv1_64(const void *d, size_t len);
+uint64_t fnv1a_64(const void *d, size_t len);
+
+#endif