mirror of https://github.com/dnomd343/ClearDNS
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
618 B
18 lines
618 B
#ifndef JSON_H_
|
|
#define JSON_H_
|
|
|
|
#include <stdint.h>
|
|
#include "cJSON.h"
|
|
|
|
char* to_json_format(const char *content);
|
|
uint8_t is_json_suffix(const char *file_name);
|
|
cJSON* json_field_get(cJSON *entry, const char *key);
|
|
void json_field_replace(cJSON *entry, const char *key, cJSON *content);
|
|
|
|
int json_int_value(char *caption, cJSON *json);
|
|
uint8_t json_bool_value(char *caption, cJSON *json);
|
|
char* json_string_value(char* caption, cJSON *json);
|
|
char** json_string_list_value(char *caption, cJSON *json, char **string_list);
|
|
uint32_t** json_uint32_list_value(char *caption, cJSON *json, uint32_t **uint32_list);
|
|
|
|
#endif
|
|
|