#define i_implement #include #define i_key_str #define i_val_str #include int main(void) { cmap_str m = {0}; cmap_str_emplace(&m, "Test short", "This is a short string"); cmap_str_emplace(&m, "Test long ", "This is a longer string"); c_forpair (k, v, cmap_str, m) printf("%s: '%s' Len=%" c_ZI ", Is long: %s\n", cstr_str(_.k), cstr_str(_.v), cstr_size(_.v), cstr_is_long(_.v) ? "true" : "false"); cmap_str_drop(&m); }