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

Function git_configset_get_string

config.c:1904–1911  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1902}
1903
1904int git_configset_get_string(struct config_set *set, const char *key, char **dest)
1905{
1906 const char *value;
1907 if (!git_configset_get_value(set, key, &value, NULL))
1908 return git_config_string(dest, key, value);
1909 else
1910 return 1;
1911}
1912
1913static int git_configset_get_string_tmp(struct config_set *set, const char *key,
1914 const char **dest)

Callers 2

repo_config_get_stringFunction · 0.85

Calls 2

git_configset_get_valueFunction · 0.85
git_config_stringFunction · 0.85

Tested by

no test coverage detected