renamed some functions
This commit is contained in:
@@ -24,8 +24,8 @@ typedef struct HashMap {
|
||||
u16 height_n;
|
||||
} HashMap;
|
||||
|
||||
void HashMap_alloc(HashMap* ptr, u32 value_t_size, FreeFunction NULLABLE(value_destructor));
|
||||
void HashMap_free(HashMap* ptr);
|
||||
void HashMap_create(HashMap* ptr, u32 value_t_size, FreeFunction NULLABLE(value_destructor));
|
||||
void HashMap_destroy(HashMap* ptr);
|
||||
void* NULLABLE(HashMap_tryGetPtr)(HashMap* ptr, str key);
|
||||
bool HashMap_tryPush(HashMap* ptr, str key, void* value_ptr);
|
||||
bool HashMap_tryDelete(HashMap* ptr, str key);
|
||||
|
||||
Reference in New Issue
Block a user