| 1791 | } |
| 1792 | |
| 1793 | void git_configset_init(struct config_set *set) |
| 1794 | { |
| 1795 | hashmap_init(&set->config_hash, config_set_element_cmp, NULL, 0); |
| 1796 | set->hash_initialized = 1; |
| 1797 | set->list.nr = 0; |
| 1798 | set->list.alloc = 0; |
| 1799 | set->list.items = NULL; |
| 1800 | } |
| 1801 | |
| 1802 | void git_configset_clear(struct config_set *set) |
| 1803 | { |