| 613 | } |
| 614 | |
| 615 | int git_config_key_is_valid(const char *key) |
| 616 | { |
| 617 | return !do_parse_config_key(key, NULL, NULL, 1); |
| 618 | } |
| 619 | |
| 620 | static int config_parse_pair(const char *key, const char *value, |
| 621 | struct key_value_info *kvi, |
no test coverage detected