MCPcopy Index your code
hub / github.com/git/git / strmap_init_with_options

Function strmap_init_with_options

strmap.c:32–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30}
31
32void 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
41static void strmap_free_entries_(struct strmap *map, int free_values)
42{

Callers 7

compute_collisionsFunction · 0.85
merge_startFunction · 0.85
setup_additional_headersFunction · 0.85
strset_init_with_optionsFunction · 0.85
pseudo_merge_group_initFunction · 0.85

Calls 1

hashmap_initFunction · 0.85

Tested by

no test coverage detected