| 72 | } |
| 73 | |
| 74 | void strmap_partial_clear(struct strmap *map, int free_values) |
| 75 | { |
| 76 | strmap_free_entries_(map, free_values); |
| 77 | hashmap_partial_clear(&map->map); |
| 78 | } |
| 79 | |
| 80 | static struct strmap_entry *create_entry(struct strmap *map, |
| 81 | const char *str, |
no test coverage detected