TURAG-Feldbus
murmurhash3.h
1
//-----------------------------------------------------------------------------
2
// MurmurHash3 was written by Austin Appleby, and is placed in the public
3
// domain. The author hereby disclaims copyright to this source code.
4
5
#ifndef _MURMURHASH3_H_
6
#define _MURMURHASH3_H_
7
8
9
#ifdef __cplusplus
10
# include <cstdint>
11
#else
12
# include <stdint.h>
13
#endif
14
15
16
17
#ifdef __cplusplus
18
extern
"C"
{
19
#endif
20
21
22
23
uint32_t murmurhash3_x86_32 (
const
void
* key,
int
len, uint32_t seed);
24
25
26
#ifdef __cplusplus
27
}
/* closing brace for extern "C" */
28
#endif
29
30
31
#endif
// _MURMURHASH3_H_
src
feldbus
util
murmurhash3.h
Generated by
1.9.4