brintos

brintos / linux-shallow public Read only

0
0
Text · 395 B · d84711d Raw
16 lines · c
1/* SPDX-License-Identifier: LGPL-2.1+ */2/*3 * MurmurHash3 was written by Austin Appleby, and is placed in the public4 * domain. The author hereby disclaims copyright to this source code.5 */6 7#ifndef _MURMURHASH3_H_8#define _MURMURHASH3_H_9 10#include <linux/compiler.h>11#include <linux/types.h>12 13void murmurhash3_128(const void *key, int len, u32 seed, void *out);14 15#endif /* _MURMURHASH3_H_ */16