xemu/include/qemu/fast-hash.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
176 B
C
Raw Permalink Normal View History

#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 */