update JSON library

This commit is contained in:
rr- 2021-02-22 22:29:13 +01:00
parent 38bb80bdbb
commit 2a9bbfc078
5 changed files with 3522 additions and 1266 deletions

View file

@ -3,10 +3,8 @@
#include "json-parser/json.h"
json_value* JSONGetField(
json_value* root, json_type field_type, const char* name, int* pIndex);
int JSONGetBooleanValue(json_value* root, const char* name);
const char* JSONGetStringValue(json_value* root, const char* name);
struct json_value_s* JSONGetField(struct json_value_s* root, const char* name);
int8_t JSONGetBooleanValue(struct json_value_s* root, const char* name);
const char* JSONGetStringValue(struct json_value_s* root, const char* name);
#endif