| 14 | } |
| 15 | |
| 16 | static void repo_cfg_int(struct repository *r, const char *key, int *dest, |
| 17 | int def) |
| 18 | { |
| 19 | if (repo_config_get_int(r, key, dest)) |
| 20 | *dest = def; |
| 21 | } |
| 22 | |
| 23 | static void repo_cfg_ulong(struct repository *r, const char *key, unsigned long *dest, |
| 24 | unsigned long def) |
no test coverage detected