aboutsummaryrefslogtreecommitdiffstats
path: root/cheesemap.h
diff options
context:
space:
mode:
authorFabrice <fabrice@schaub-dev.xyz>2026-03-22 13:49:53 +0100
committerFabrice <fabrice@schaub-dev.xyz>2026-03-22 13:49:53 +0100
commit38c31a911deadc1dafa9587daaa1d9e4935eaf98 (patch)
treee3b69c6ed42f902c80b3c05e841fb5a11081a54f /cheesemap.h
parent5f955749eb99e53304338453e351c9f8e5f5a2f7 (diff)
formatting code
Diffstat (limited to 'cheesemap.h')
-rw-r--r--cheesemap.h3
1 files changed, 1 insertions, 2 deletions
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);