X-Git-Url: https://develop.uap-core.de/gitweb/uwplayer.git/blobdiff_plain/5dddf6a0fd936f4f3349d0174c1261d8fb99523c..1e2b55c2c2e79a41dd0056fda7966dabc329fc0d:/application/json.h diff --git a/application/json.h b/application/json.h index 88494bf..659c7f6 100644 --- a/application/json.h +++ b/application/json.h @@ -200,6 +200,11 @@ 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); #ifdef __cplusplus }