MCPcopy Create free account
hub / github.com/git/git / git_config_ssize_t

Function git_config_ssize_t

config.c:1262–1269  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1260}
1261
1262ssize_t git_config_ssize_t(const char *name, const char *value,
1263 const struct key_value_info *kvi)
1264{
1265 ssize_t ret;
1266 if (!git_parse_ssize_t(value, &ret))
1267 die_bad_number(name, value, kvi);
1268 return ret;
1269}
1270
1271double git_config_double(const char *name, const char *value,
1272 const struct key_value_info *kvi)

Callers 1

http_optionsFunction · 0.85

Calls 2

git_parse_ssize_tFunction · 0.85
die_bad_numberFunction · 0.85

Tested by

no test coverage detected