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

Function git_configset_get_pathname

config.c:1998–2005  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1996}
1997
1998static int git_configset_get_pathname(struct config_set *set, const char *key, char **dest)
1999{
2000 const char *value;
2001 if (!git_configset_get_value(set, key, &value, NULL))
2002 return git_config_pathname(dest, key, value);
2003 else
2004 return 1;
2005}
2006
2007struct comment_char_config {
2008 unsigned last_key_id;

Callers 1

repo_config_get_pathnameFunction · 0.85

Calls 2

git_configset_get_valueFunction · 0.85
git_config_pathnameFunction · 0.85

Tested by

no test coverage detected