| 2362 | } |
| 2363 | |
| 2364 | int repo_config_get_string_multi(struct repository *repo, const char *key, |
| 2365 | const struct string_list **dest) |
| 2366 | { |
| 2367 | git_config_check_init(repo); |
| 2368 | return git_configset_get_string_multi(repo->config, key, dest); |
| 2369 | } |
| 2370 | |
| 2371 | int repo_config_get_string(struct repository *repo, |
| 2372 | const char *key, char **dest) |
no test coverage detected