From d8f41b071dd80f2d552c226d788ff165f3b2e86a Mon Sep 17 00:00:00 2001 From: Francesco Date: Thu, 15 Jan 2026 18:22:20 +0100 Subject: [PATCH] fix(hash): add stdbool.h --- include/utils/hash.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/utils/hash.h b/include/utils/hash.h index c14a916..6644e44 100644 --- a/include/utils/hash.h +++ b/include/utils/hash.h @@ -1,6 +1,8 @@ #ifndef CWS_HASH_H #define CWS_HASH_H +#include + unsigned int my_str_hash_fn(const void *key); bool my_str_equal_fn(const void *a, const void *b);