From 38c31a911deadc1dafa9587daaa1d9e4935eaf98 Mon Sep 17 00:00:00 2001 From: Fabrice Date: Sun, 22 Mar 2026 13:49:53 +0100 Subject: formatting code --- cheesemap.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'cheesemap.h') diff --git a/cheesemap.h b/cheesemap.h index d1f72ef..32bd39f 100644 --- a/cheesemap.h +++ b/cheesemap.h @@ -140,8 +140,7 @@ void cm_new(struct cheesemap* map, uintptr_t key_size, uintptr_t value_size, uint8_t* mem_usr, cm_malloc_fn malloc, cm_free_fn free, uint8_t* map_usr, cm_hash_fn hash, cm_compare_fn compare); void cm_drop(struct cheesemap* map); -bool cm_insert(struct cheesemap* map, const uint8_t* key, - const uint8_t* value); +bool cm_insert(struct cheesemap* map, const uint8_t* key, const uint8_t* value); bool cm_lookup(struct cheesemap* map, const uint8_t* key, uint8_t** out_value); bool cm_remove(struct cheesemap* map, const uint8_t* key, uint8_t* out_value); bool cm_reserve(struct cheesemap* map, uintptr_t additional); -- cgit v1.2.3