acc/include/util/hashmap.h
szdytom 121c37c16a main function(AST)
Signed-off-by: szdytom <szdytom@163.com>
2023-06-12 16:02:43 +08:00

15 lines
145 B
C

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