#include "bind_config.h" #include #include #include #include void config_parse(const char *json) { cJSON * conf = cJSON_Parse(json); if (conf) { json_config(conf); cJSON_Delete(conf); } } void config_read(const char *filename) { }