You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
void hashtable_init( hashtable_t* table, int key_size, int item_size, int initial_capacity, void* memctx );
but the description says:
hashtable_init
--------------
void hashtable_init( hashtable_t* table, int item_size, int initial_capacity, void* memctx )
Initialize a hashtable instance. `item_size` specifies the size, in bytes, of the data type holding a single item stored
in the table. `initial_capacity` is the number of items to allocate storage for initially - capacity will automatically
grow as needed, by reallocating memory.
So, I'm unsure what to do here.
The text was updated successfully, but these errors were encountered:
The function declaration is
but the description says:
So, I'm unsure what to do here.
The text was updated successfully, but these errors were encountered: