1
0
Fork 0
linux/drivers/md/dm-vdo/murmurhash3.h
Daniel Baumann 79d69e5050
Adding upstream version 6.12.33.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 12:14:28 +02:00

15 lines
395 B
C

/* SPDX-License-Identifier: LGPL-2.1+ */
/*
* MurmurHash3 was written by Austin Appleby, and is placed in the public
* domain. The author hereby disclaims copyright to this source code.
*/
#ifndef _MURMURHASH3_H_
#define _MURMURHASH3_H_
#include <linux/compiler.h>
#include <linux/types.h>
void murmurhash3_128(const void *key, int len, u32 seed, void *out);
#endif /* _MURMURHASH3_H_ */