X-Git-Url: https://develop.uap-core.de/gitweb/uwplayer.git/blobdiff_plain/5dddf6a0fd936f4f3349d0174c1261d8fb99523c..663ac840aba3c8203afd517380d9eba7191787e4:/application/json.h diff --git a/application/json.h b/application/json.h index 88494bf..0731cca 100644 --- a/application/json.h +++ b/application/json.h @@ -200,6 +200,14 @@ int json_reader_bool(JSONParser *p); int json_read_value(JSONParser *p, JSONValue **value); +JSONValue* json_obj_get(JSONObject *obj, const char *name); + +JSONValue* json_array_get(JSONArray *array, size_t i); + +void json_value_free(JSONValue *value); + +int json_strcmp(JSONValue *jsstr, const char *str); +int json_strncmp(JSONValue *jsstr, const char *str, size_t slen); #ifdef __cplusplus }