-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMurmurHash3.h
23 lines (16 loc) · 947 Bytes
/
MurmurHash3.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// ****************************************************************************
// This file originally from:
// http://web.mit.edu/mmadinot/Desktop/mmadinot/MacData/afs/athena.mit.edu/software/julia_v0.2.0/julia/src/support/MurmurHash3.h
// ****************************************************************************
// MurmurHash3 was written by Austin Appleby, and is placed in the public
// domain. The author hereby disclaims copyright to this source code.
#ifndef MURMURHASH3_H
#define MURMURHASH3_H
//-----------------------------------------------------------------------------
// Platform-specific functions and macros
#include <stdint.h>
#include "c.h"
//-----------------------------------------------------------------------------
void MurmurHash3_x64_128 (const void *key, const Size len, const uint64_t seed, void *out);
//-----------------------------------------------------------------------------
#endif // MURMURHASH3_H