mirror of
https://github.com/xemu-project/xemu.git
synced 2024-12-03 00:57:25 +00:00
10 lines
176 B
C
10 lines
176 B
C
#ifndef QEMU_FAST_HASH_H
|
|
#define QEMU_FAST_HASH_H
|
|
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
|
|
uint64_t fast_hash(const uint8_t *data, size_t len);
|
|
|
|
#endif /* QEMU_FAST_HASH_H */
|