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.
24 lines
547 B
24 lines
547 B
#ifndef _MURMURHASH3_H_ |
|
#define _MURMURHASH3_H_ |
|
|
|
#include <stdint.h> |
|
|
|
#ifdef __cplusplus |
|
extern "C" { |
|
#endif |
|
|
|
/*-----------------------------------------------------------------*/ |
|
|
|
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); |
|
|
|
/*-----------------------------------------------------------------*/ |
|
|
|
#ifdef __cplusplus |
|
} |
|
#endif |
|
|
|
#endif /* _MURMURHASH3_H_ */
|
|
|