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

Function git_configset_get_string_multi

config.c:1878–1890  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1876}
1877
1878int git_configset_get_string_multi(struct config_set *cs, const char *key,
1879 const struct string_list **dest)
1880{
1881 int ret;
1882
1883 if ((ret = git_configset_get_value_multi(cs, key, dest)))
1884 return ret;
1885 if ((ret = for_each_string_list((struct string_list *)*dest,
1886 check_multi_string, (void *)key)))
1887 return ret;
1888
1889 return 0;
1890}
1891
1892int git_configset_get(struct config_set *set, const char *key)
1893{

Callers 2

maintenance_unregisterFunction · 0.85

Calls 2

for_each_string_listFunction · 0.85

Tested by

no test coverage detected