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

Function git_config_int64

config.c:1244–1251  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1242}
1243
1244int64_t git_config_int64(const char *name, const char *value,
1245 const struct key_value_info *kvi)
1246{
1247 int64_t ret;
1248 if (!git_parse_int64(value, &ret))
1249 die_bad_number(name, value, kvi);
1250 return ret;
1251}
1252
1253unsigned long git_config_ulong(const char *name, const char *value,
1254 const struct key_value_info *kvi)

Callers 4

reftable_be_configFunction · 0.85
format_config_int64Function · 0.85
normalize_valueFunction · 0.85
receive_pack_configFunction · 0.85

Calls 2

git_parse_int64Function · 0.85
die_bad_numberFunction · 0.85

Tested by

no test coverage detected