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

Function git_configset_get_uint

config.c:1939–1949  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1937}
1938
1939int git_configset_get_uint(struct config_set *set, const char *key, unsigned int *dest)
1940{
1941 const char *value;
1942 struct key_value_info kvi;
1943
1944 if (!git_configset_get_value(set, key, &value, &kvi)) {
1945 *dest = git_config_uint(key, value, &kvi);
1946 return 0;
1947 } else
1948 return 1;
1949}
1950
1951int git_configset_get_ulong(struct config_set *set, const char *key, unsigned long *dest)
1952{

Callers 1

repo_config_get_uintFunction · 0.85

Calls 2

git_configset_get_valueFunction · 0.85
git_config_uintFunction · 0.85

Tested by

no test coverage detected