| 1402 | } |
| 1403 | |
| 1404 | static int git_config_from_stdin(config_fn_t fn, void *data, |
| 1405 | enum config_scope scope) |
| 1406 | { |
| 1407 | return do_config_from_file(fn, CONFIG_ORIGIN_STDIN, "", stdin, data, |
| 1408 | scope, NULL); |
| 1409 | } |
| 1410 | |
| 1411 | int git_config_from_file_with_options(config_fn_t fn, const char *filename, |
| 1412 | void *data, enum config_scope scope, |
no test coverage detected