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

Function git_config_uint

config.c:1235–1242  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1233}
1234
1235unsigned int git_config_uint(const char *name, const char *value,
1236 const struct key_value_info *kvi)
1237{
1238 unsigned int ret;
1239 if (!git_parse_uint(value, &ret))
1240 die_bad_number(name, value, kvi);
1241 return ret;
1242}
1243
1244int64_t git_config_int64(const char *name, const char *value,
1245 const struct key_value_info *kvi)

Callers 1

git_configset_get_uintFunction · 0.85

Calls 2

git_parse_uintFunction · 0.85
die_bad_numberFunction · 0.85

Tested by

no test coverage detected