Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BLI_hash_mm3.h « blenlib « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 85d3cba62c363e234d43a2b66964fce81fc87a61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: GPL-2.0-or-later */

#pragma once

/** \file
 * \ingroup bli
 */

#include "BLI_sys_types.h"

#ifdef __cplusplus
extern "C" {
#endif

uint32_t BLI_hash_mm3(const unsigned char *data, size_t len, uint32_t seed);

#ifdef __cplusplus
}
#endif