From b372795ac777b979e32a71a03911c80126ae0d8a Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Mon, 1 Apr 2019 14:19:42 +0200 Subject: Added argument parsing with libparg, along with usefull running modes --- common/config.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'common/config.c') diff --git a/common/config.c b/common/config.c index 1c45e7e..11a06d7 100644 --- a/common/config.c +++ b/common/config.c @@ -7,12 +7,12 @@ config_t * config = NULL; char // returns 0 if ok, greater than 0 otherwise -config_load(void) +config_load(const char *config_file) { config = malloc(sizeof(config_t)); config_init(config); config_set_tab_width(config, 4); - if (config_read_file(config, CONFIG_PATH) != CONFIG_TRUE) { + if (config_read_file(config, config_file) != CONFIG_TRUE) { switch(config_error_type(config)) { case CONFIG_ERR_NONE: fprintf(stderr, "Configuration read error with none type reported... This shouldn't happen!\n"); -- cgit v1.2.3