Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/hash.h
diff options
context:
space:
mode:
Diffstat (limited to 'hash.h')
-rw-r--r--hash.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/hash.h b/hash.h
new file mode 100644
index 0000000..82b7d3c
--- /dev/null
+++ b/hash.h
@@ -0,0 +1,8 @@
+#ifndef _HASH_H__
+#define _HASH_H__
+
+#include <stdint.h>
+
+uint32_t hash_murmur2(const void * key, int len);
+
+#endif