xxhash removed
This commit is contained in:
@@ -11,8 +11,6 @@ extern "C" {
|
||||
|
||||
uint32 hash_sdbm32(uint32 oldhash, void* buf, uint32 len);
|
||||
uint32 hash_crc32(uint32 oldhash, void* buf, uint32 len);
|
||||
uint32 hash_xxh32(uint32 oldhash, void* buf, uint32 len);
|
||||
uint64 hash_xxh3_64(uint32 oldhash, void* buf, uint32 len);
|
||||
|
||||
#if __cplusplus
|
||||
}
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
#include "hash.h"
|
||||
#define XXH_INLINE_ALL
|
||||
#define XXH_STATIC_LINKING_ONLY /* access advanced declarations */
|
||||
#define XXH_IMPLEMENTATION /* access definitions */
|
||||
#include "./xxhash.h"
|
||||
|
||||
uint32 hash_xxh32(uint32 oldhash, void* buf, uint32 len){
|
||||
return XXH32(buf,len,oldhash);
|
||||
}
|
||||
uint64 hash_xxh3_64(uint32 oldhash, void* buf, uint32 len){
|
||||
return XXH3_64bits_withSeed(buf,len,oldhash);
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user