| 1290 | } |
| 1291 | |
| 1292 | int git_config_bool(const char *name, const char *value) |
| 1293 | { |
| 1294 | int v = git_parse_maybe_bool(value); |
| 1295 | if (v < 0) |
| 1296 | die(_("bad boolean config value '%s' for '%s'"), value, name); |
| 1297 | return v; |
| 1298 | } |
| 1299 | |
| 1300 | int git_config_string(char **dest, const char *var, const char *value) |
| 1301 | { |
no test coverage detected