• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef CONFIGPARSER_H_INCLUDED
2 #define CONFIGPARSER_H_INCLUDED
3 
4 #define CONFIG_DEFAULT ((const char*) 1)
5 
6 void parse_config_file(const char *file);
7 void parse_default_config_file();
8 
9 #endif
10