| 1242 | } |
| 1243 | |
| 1244 | int64_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 | |
| 1253 | unsigned long git_config_ulong(const char *name, const char *value, |
| 1254 | const struct key_value_info *kvi) |
no test coverage detected