diff options
author | flow <flowlnlnln@gmail.com> | 2022-06-03 19:02:11 -0300 |
---|---|---|
committer | flow <flowlnlnln@gmail.com> | 2022-07-17 11:33:41 -0300 |
commit | 32a9545360b10058cf84b951ee88959adf3bf374 (patch) | |
tree | 6a7f55747945f6beec5582767ce102f219f84f82 /libraries/murmur2/src/MurmurHash2.h | |
parent | 9a44c9221139428fa4e3bdf560f6bfdc6fcbe75d (diff) | |
download | PrismLauncher-32a9545360b10058cf84b951ee88959adf3bf374.tar.gz PrismLauncher-32a9545360b10058cf84b951ee88959adf3bf374.tar.bz2 PrismLauncher-32a9545360b10058cf84b951ee88959adf3bf374.zip |
libs: add murmur2 library
Signed-off-by: flow <flowlnlnln@gmail.com>
Diffstat (limited to 'libraries/murmur2/src/MurmurHash2.h')
-rw-r--r-- | libraries/murmur2/src/MurmurHash2.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/libraries/murmur2/src/MurmurHash2.h b/libraries/murmur2/src/MurmurHash2.h new file mode 100644 index 00000000..c7b83bca --- /dev/null +++ b/libraries/murmur2/src/MurmurHash2.h @@ -0,0 +1,30 @@ +//----------------------------------------------------------------------------- +// MurmurHash2 was written by Austin Appleby, and is placed in the public +// domain. The author hereby disclaims copyright to this source code. + +#pragma once + +//----------------------------------------------------------------------------- +// Platform-specific functions and macros + +// Microsoft Visual Studio + +#if defined(_MSC_VER) && (_MSC_VER < 1600) + +typedef unsigned char uint8_t; +typedef unsigned int uint32_t; +typedef unsigned __int64 uint64_t; + +// Other compilers + +#else // defined(_MSC_VER) + +#include <stdint.h> + +#endif // !defined(_MSC_VER) + +//----------------------------------------------------------------------------- + +uint64_t MurmurHash2 ( const void* key, int len, uint32_t seed = 1 ); + +//----------------------------------------------------------------------------- |