Skip to content

Commit b9c44fe

Browse files
committed
Revert "Remove duplicate nmhash.c and nmhash.h files"
This reverts commit 2d042fd.
1 parent 2d042fd commit b9c44fe

File tree

2 files changed

+841
-0
lines changed

2 files changed

+841
-0
lines changed

test/hash_functions/nmhash.c

+8
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)