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

Function repo_config_get_uint

config.c:2400–2405  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2398}
2399
2400int repo_config_get_uint(struct repository *repo,
2401 const char *key, unsigned int *dest)
2402{
2403 git_config_check_init(repo);
2404 return git_configset_get_uint(repo->config, key, dest);
2405}
2406
2407int repo_config_get_ulong(struct repository *repo,
2408 const char *key, unsigned long *dest)

Callers

nothing calls this directly

Calls 2

git_config_check_initFunction · 0.85
git_configset_get_uintFunction · 0.85

Tested by

no test coverage detected