| 2016 | } |
| 2017 | |
| 2018 | void cJSON_DeleteItemFromObject(cJSON *object, const char *string) |
| 2019 | { |
| 2020 | cJSON_Delete(cJSON_DetachItemFromObject(object, string)); |
| 2021 | } |
| 2022 | |
| 2023 | /* Replace array/object items with new ones. */ |
| 2024 | void cJSON_InsertItemInArray(cJSON *array, int which, cJSON *newitem) |
no test coverage detected