diff options
Diffstat (limited to 'src/confparser.h')
-rw-r--r-- | src/confparser.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/confparser.h b/src/confparser.h index 3e772fc..d8013e0 100644 --- a/src/confparser.h +++ b/src/confparser.h @@ -40,9 +40,9 @@ struct ConfigValues { }; /* Parse the configuration file and fill the conf struct */ -extern int config_file_parse(Conf *conf, UserOpt *opt); +int config_file_parse(Conf *conf, UserOpt *opt); -extern void make_config_name(char * ret, const char *confPath); -extern void initialize_conf(Conf *conf); -extern void free_conf(Conf *conf); +void make_config_name(char * ret, const char *confPath); +void initialize_conf(Conf *conf); +void free_conf(Conf *conf); #endif // CONFPARSER_H |