create executable function which identifies and loads a cache if available

This commit is contained in:
2025-07-07 04:03:11 +01:00
parent 5c0ced5e45
commit 72cc87f5b6
6 changed files with 48 additions and 30 deletions

View File

@@ -55,7 +55,9 @@ void resize_hashmap(struct hashmap *t) {
while (temp) {
hashmap_insert(t, temp->hash, temp->key, temp->val,
temp->order); // Will increment count
struct node *temp_temp = temp;
temp = temp->next;
free(temp_temp);
}
}
free(old_list);