We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d042fd commit b9c44feCopy full SHA for b9c44fe
test/hash_functions/nmhash.c
@@ -0,0 +1,8 @@
1
+#include "nmhash.h"
2
+int32_t nmhash32_test ( const void * key, size_t len, uint32_t seed ) {
3
+ return NMHASH32 (key, (const size_t) len, seed);
4
+}
5
+
6
+int32_t nmhash32x_test ( const void * key, size_t len, uint32_t seed ) {
7
+ return NMHASH32X (key, (const size_t) len, seed);
8
0 commit comments