aboutsummaryrefslogtreecommitdiff
path: root/inc/hash.h
diff options
context:
space:
mode:
authorMarvin Borner2023-05-26 20:34:07 +0200
committerMarvin Borner2023-05-26 20:34:22 +0200
commit896e0e1bd8502a6d7f901f9e13bcd95df5d98635 (patch)
tree4bc1916e81f75980c213802b1d4f3e81f74fb3b3 /inc/hash.h
parent464cca35825a02541efd46cfd3af91146c118d01 (diff)
Abstract abstractification
Diffstat (limited to 'inc/hash.h')
-rw-r--r--inc/hash.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/inc/hash.h b/inc/hash.h
deleted file mode 100644
index f0bb468..0000000
--- a/inc/hash.h
+++ /dev/null
@@ -1,14 +0,0 @@
-// 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(void *data, size_t len, uint64_t seed);
-
-#endif