aboutsummaryrefslogtreecommitdiff
path: root/inc/lib/hash.h
blob: 88b9215f2245147720b4be248eee9f36bd864525 (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 CALM_HASH_H
#define CALM_HASH_H

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

typedef uint64_t hash_t;

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

#endif