Official mirror of https://gitlab.freedesktop.org/freetype/freetype
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
547 B
25 lines
547 B
8 years ago
|
#ifndef _MURMURHASH3_H_
|
||
|
#define _MURMURHASH3_H_
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
8 years ago
|
/*-----------------------------------------------------------------*/
|
||
8 years ago
|
|
||
|
void MurmurHash3_x86_32 (const void *key, int len, uint32_t seed, void *out);
|
||
|
|
||
|
void MurmurHash3_x86_128(const void *key, int len, uint32_t seed, void *out);
|
||
|
|
||
|
void MurmurHash3_x64_128(const void *key, int len, uint32_t seed, void *out);
|
||
|
|
||
8 years ago
|
/*-----------------------------------------------------------------*/
|
||
8 years ago
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
8 years ago
|
#endif /* _MURMURHASH3_H_ */
|