acc/include/util/hashmap.h
szdytom 6950807161 leg
Signed-off-by: szdytom <szdytom@163.com>
2023-06-11 20:50:44 +08:00

12 lines
138 B
C

#ifndef ACC_UTIL_HASHMAP
#define ACC_UTIL_HASHMAP
struct hashmap {
int size;
int cap;
linklist *data;
};
void hashmap_init();
#endif