| 2398 | } |
| 2399 | |
| 2400 | int 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 | |
| 2407 | int repo_config_get_ulong(struct repository *repo, |
| 2408 | const char *key, unsigned long *dest) |
nothing calls this directly
no test coverage detected