for values read from `git_config_from_parameters()` */
| 640 | |
| 641 | /* for values read from `git_config_from_parameters()` */ |
| 642 | void kvi_from_param(struct key_value_info *out) |
| 643 | { |
| 644 | out->filename = NULL; |
| 645 | out->linenr = -1; |
| 646 | out->origin_type = CONFIG_ORIGIN_CMDLINE; |
| 647 | out->scope = CONFIG_SCOPE_COMMAND; |
| 648 | } |
| 649 | |
| 650 | int git_config_parse_parameter(const char *text, |
| 651 | config_fn_t fn, void *data) |
no outgoing calls
no test coverage detected