/* * config.h * * Created on: Dec 21, 2010 * Author: lamikr */ #ifndef CONFIG_H_ #define CONFIG_H_ #include #ifdef __cplusplus extern "C" #endif bool set_config_value_and_save(const char *conf_dir_name, const char *conf_file_basename, const char *section_type, const char *section_name, const char *key, const char *value); #ifdef __cplusplus extern "C" #endif char* get_config_value_and_close(const char *conf_dir_name, const char *conf_file_basename, const char *section_name, const char *key); #endif /* CONFIG_H_ */