The hash_table will always be only sizeof(hash_table) bytes big. The table element is a pointer to an array of poiinters to bucket elements. So you'd need something like this:
hash_table* ht = malloc(sizeof(hash_table));
ht->size = 101;
ht->table = malloc(sizeof(bucket)*htmalloc(sizeof(bucket*)*ht->size);
But I suspect that there may be some initialization method that comes with that, and you could then do something like this:
hash_table* ht = alloc_hash_table(101);
Anyway, I'm kind of rusty in C, so take this with a grain of salt.
