mirror of
https://github.com/lifegpc/c-utils.git
synced 2026-06-06 05:08:45 +08:00
12 lines
186 B
C
12 lines
186 B
C
#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
|