Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 05-methods/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Our hash function will implement the following API:
// hash_table.h
void ht_insert(ht_hash_table* ht, const char* key, const char* value);
char* ht_search(ht_hash_table* ht, const char* key);
void ht_delete(ht_hash_table* h, const char* key);
void ht_delete(ht_hash_table* ht, const char* key);
```

## Insert
Expand Down