| 30 | } |
| 31 | |
| 32 | void strmap_init_with_options(struct strmap *map, |
| 33 | struct mem_pool *pool, |
| 34 | int strdup_strings) |
| 35 | { |
| 36 | hashmap_init(&map->map, cmp_strmap_entry, NULL, 0); |
| 37 | map->pool = pool; |
| 38 | map->strdup_strings = strdup_strings; |
| 39 | } |
| 40 | |
| 41 | static void strmap_free_entries_(struct strmap *map, int free_values) |
| 42 | { |
no test coverage detected