summaryrefslogtreecommitdiff
path: root/hash.h
diff options
context:
space:
mode:
authornirav <nirav@teisuu.com>2020-11-29 13:16:53 +0000
committernirav <nirav@teisuu.com>2020-11-29 13:16:53 +0000
commit9cb655becbdb58c7dfe9f6e72f8915149c1fce61 (patch)
treea4c0aefb53dca32a14488c70ccbea41926261699 /hash.h
downloadhash-master.tar.gz
hash-master.zip
Initial commitHEADmaster
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