// Copyright (c) 2023, Marvin Borner // SPDX-License-Identifier: MIT #ifndef CALM_HASH_H #define CALM_HASH_H #include #include typedef uint64_t hash_t; hash_t hash(void *data, size_t len, uint64_t seed); #endif