Move the main configfile structure into configfile.c

This is required for a later refactoring of the configuration file
handling.
This commit is contained in:
Ian Barwick
2020-05-04 11:19:13 +09:00
parent 3ca642fee1
commit d37513312a
6 changed files with 11 additions and 14 deletions

View File

@@ -33,6 +33,7 @@ const static char *_progname = NULL;
char config_file_path[MAXPGPATH] = "";
static bool config_file_provided = false;
bool config_file_found = false;
t_configuration_options config_file_options = T_CONFIGURATION_OPTIONS_INITIALIZER;
static void parse_config(t_configuration_options *options, bool terse);
static void _parse_config(t_configuration_options *options, ItemList *error_list, ItemList *warning_list);