basic hastable working, though stress testing breaks

This commit is contained in:
herbglitch 2025-02-17 06:06:11 -07:00
parent 6a9f914ffb
commit c175278416
4 changed files with 114 additions and 57 deletions

View file

@ -41,7 +41,7 @@ typedef void (* ARC_Hashtable_DestroyKeyValueFn)(void *key, void *value);
* @param[in] key a key at the current iteration
* @param[in] value a value that matches the key at the current iteration
*/
typedef void (* ARC_Hashtable_IteratorFn)(void *key, void *value, uint32_t temp, uint32_t tempid);
typedef void (* ARC_Hashtable_IteratorFn)(void *key, void *value);
/**
* @brief a resizable hashtable data type (will find next open slot before resizing)