updated hashtable and started on basic hashtable testing

This commit is contained in:
herbglitch 2025-02-14 03:23:42 -07:00
parent 122eb1d351
commit c344594af7
7 changed files with 453 additions and 187 deletions

View file

@ -53,7 +53,7 @@ void ARC_Vector_Destroy(ARC_Vector *vector){
ARC_Vector_Clear(vector);
//free the delete data function if it exists
if(vector->destroyDataFn){
if(vector->destroyDataFn != NULL){
free(vector->destroyDataFn);
}