#ifndef _JSON_H_ #define _JSON_H_ #include #include "cJSON.h" char* to_json(const char *config_file); cJSON* json_field_get(cJSON *entry, const char *field); void json_field_replace(cJSON *entry, const char *field, cJSON *content); uint8_t json_bool_value(char *key, cJSON *json); uint32_t** json_uint32_list_value(char *key, cJSON *json, uint32_t **uint32_list); char** json_string_list_value(char *key, cJSON *json, char **string_list); char* json_string_value(char* key, cJSON *json); int json_int_value(char *key, cJSON *json); uint8_t is_json_suffix(const char *file_name); #endif