| 2117 | } |
| 2118 | |
| 2119 | CJSON_PUBLIC(void) cJSON_DeleteItemFromArray(cJSON *array, int which) |
| 2120 | { |
| 2121 | cJSON_Delete(cJSON_DetachItemFromArray(array, which)); |
| 2122 | } |
| 2123 | |
| 2124 | CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObject(cJSON *object, const char *string) |
| 2125 | { |
nothing calls this directly
no test coverage detected