Tinyhash
This is a library containing multiple C implementations of hashmap.
Loading...
Searching...
No Matches
table.h
Go to the documentation of this file.
1#ifndef __TINYHASH_COMMON_TABLE_H__
2#define __TINYHASH_COMMON_TABLE_H__
3
8#define TH_TABLE_NEXT_CAPACITY(capacity) (capacity) == 0 ? 8 : (capacity) * 2
9
10#endif