20 lines
555 B
C
20 lines
555 B
C
#include "guf_dict_impl.h"
|
|
|
|
#define GUF_DICT_KEY_T guf_cstr_const
|
|
#define GUF_DICT_KEY_T_EQ guf_cstr_const_eq
|
|
#define GUF_DICT_KEY_HASH guf_cstr_const_hash
|
|
#define GUF_DICT_VAL_T int
|
|
#define GUF_DICT_VAL_T_IS_INTEGRAL_TYPE
|
|
#define GUF_DICT_NAME dict_cstr_int
|
|
#define GUF_DICT_IMPL
|
|
#include "guf_dict.h"
|
|
|
|
#define GUF_DICT_KEY_T int32_t
|
|
#define GUF_DICT_KEY_HASH int32_hash
|
|
#define GUF_DICT_KEY_T_EQ int32_eq
|
|
#define GUF_DICT_VAL_T bool
|
|
#define GUF_DICT_VAL_T_IS_INTEGRAL_TYPE
|
|
#define GUF_DICT_NAME dict_i32_bool
|
|
#define GUF_DICT_IMPL
|
|
#include "guf_dict.h"
|