| 24 | } |
| 25 | |
| 26 | void strmap_init(struct strmap *map) |
| 27 | { |
| 28 | struct strmap blank = STRMAP_INIT; |
| 29 | memcpy(map, &blank, sizeof(*map)); |
| 30 | } |
| 31 | |
| 32 | void strmap_init_with_options(struct strmap *map, |
| 33 | struct mem_pool *pool, |
no outgoing calls
no test coverage detected