Wrapper around my_load_defaults() for interface compatibility. SYNOPSIS load_defaults() conf_file Basename for configuration file to search for. If this is a path, then only this file is read. groups Which [group] entrys to read. Points to an null terminated array of pointers argc Pointer to argc of original program argv Pointer to argv of original progra
| 571 | 1 The given conf_file didn't exists |
| 572 | */ |
| 573 | int load_defaults(const char *conf_file, const char **groups, |
| 574 | int *argc, char ***argv) |
| 575 | { |
| 576 | return my_load_defaults(conf_file, groups, argc, argv, &default_directories); |
| 577 | } |
| 578 | |
| 579 | /* |
| 580 | Read options from configurations files |
no test coverage detected