summaryrefslogtreecommitdiff
path: root/murmurhash_example.c
diff options
context:
space:
mode:
Diffstat (limited to 'murmurhash_example.c')
-rw-r--r--murmurhash_example.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/murmurhash_example.c b/murmurhash_example.c
deleted file mode 100644
index e8a840c..0000000
--- a/murmurhash_example.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <stdlib.h>
-#include <string.h>
-#include <stdio.h>
-#include <murmurhash.h>
-
-int main(void)
-{
- uint32_t seed = 0;
- const char *key = "kinkajou"; // // 0xb6d99cf8
- uint32_t hash = murmurhash(key, (uint32_t)strlen(key), seed);
- printf("murmurhash(%s) = 0x%x\n", key, hash);
- return 0;
-} \ No newline at end of file