impl hash map

This commit is contained in:
2024-07-18 14:21:43 +08:00
parent 640cb926ca
commit 04678ac09b
6 changed files with 370 additions and 1 deletions

11
utils_static.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef _UTIL_UTILS_STATIC_H
#define _UTIL_UTILS_STATIC_H
#include <stddef.h>
#ifdef __cplusplus
extern "C" {
#endif
extern size_t hashmap_primes[26];
#ifdef __cplusplus
}
#endif
#endif