| 1427 | } |
| 1428 | |
| 1429 | int git_config_from_file(config_fn_t fn, const char *filename, void *data) |
| 1430 | { |
| 1431 | return git_config_from_file_with_options(fn, filename, data, |
| 1432 | CONFIG_SCOPE_UNKNOWN, NULL); |
| 1433 | } |
| 1434 | |
| 1435 | int git_config_from_mem(config_fn_t fn, |
| 1436 | const enum config_origin_type origin_type, |
no test coverage detected