Merge branch 'master' of https://github.com/Protovision/json-c into Protovision-master

This commit is contained in:
Eric Haszlakiewicz
2016-04-30 18:52:47 +00:00
4 changed files with 35 additions and 0 deletions

View File

@@ -1078,3 +1078,8 @@ int json_object_equal(struct json_object* jso1, struct json_object* jso2)
return 0;
}
int json_object_array_del_idx(struct json_object *jso, int idx, int count)
{
return array_list_del_idx(jso->o.c_array, idx, count);
}