aboutsummaryrefslogtreecommitdiff
path: root/inc/hash.h
blob: 7898180479cc2a4e36f55395e5e7ccc13faf27d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) 2023, Marvin Borner <dev@marvinborner.de>
// SPDX-License-Identifier: MIT

#ifndef BLOC_HASH_H
#define BLOC_HASH_H

#include <stdint.h>
#include <stddef.h>

typedef uint64_t hash_t;

hash_t hash(const void *data, size_t len, uint64_t seed);

#endif