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

Function git_configset_get_value_multi

config.c:1858–1871  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1856}
1857
1858int git_configset_get_value_multi(struct config_set *set, const char *key,
1859 const struct string_list **dest)
1860{
1861 struct config_set_element *e;
1862 int ret;
1863
1864 if ((ret = configset_find_element(set, key, &e)))
1865 return ret;
1866 else if (!e)
1867 return 1;
1868 *dest = &e->value_list;
1869
1870 return 0;
1871}
1872
1873static int check_multi_string(struct string_list_item *item, void *util)
1874{

Callers 4

git_configset_get_valueFunction · 0.85
cmd__configFunction · 0.85

Calls 1

configset_find_elementFunction · 0.85

Tested by 1

cmd__configFunction · 0.68