diff options
| author | Fabrice <fabrice@schaub-dev.xyz> | 2026-03-22 13:49:53 +0100 |
|---|---|---|
| committer | Fabrice <fabrice@schaub-dev.xyz> | 2026-03-22 13:49:53 +0100 |
| commit | 38c31a911deadc1dafa9587daaa1d9e4935eaf98 (patch) | |
| tree | e3b69c6ed42f902c80b3c05e841fb5a11081a54f /cheesemap.h | |
| parent | 5f955749eb99e53304338453e351c9f8e5f5a2f7 (diff) | |
formatting code
Diffstat (limited to 'cheesemap.h')
| -rw-r--r-- | cheesemap.h | 3 |
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); |
