blob: 1d00a862961506dbadde5efef5ad8e819aa7f9b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef U3_HASHTABLE_V3_H
#define U3_HASHTABLE_V3_H
#define u3h_v3_free u3h_free
#define u3h_v3_new u3h_new
#define u3h_v3_root u3h_root
#define u3h_v3_walk u3h_walk
#include "../hashtable.h"
/** Functions.
**/
/* u3h_v3_new_cache(): create hashtable with bounded size.
*/
u3p(u3h_v3_root)
u3h_v3_new_cache(c3_w clk_w);
#endif /* U3_HASHTABLE_V3_H */
|