mirror of
https://github.com/xemu-project/xemu.git
synced 2025-02-17 02:29:12 +00:00
8 lines
140 B
C
8 lines
140 B
C
#include "qemu/fast-hash.h"
|
|
#include <xxhash.h>
|
|
|
|
uint64_t fast_hash(const uint8_t *data, size_t len)
|
|
{
|
|
return XXH3_64bits(data, len);
|
|
}
|