| 2292 | } |
| 2293 | |
| 2294 | CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromArray(cJSON *array, int which) |
| 2295 | { |
| 2296 | if (which < 0) |
| 2297 | { |
| 2298 | return NULL; |
| 2299 | } |
| 2300 | |
| 2301 | return cJSON_DetachItemViaPointer(array, get_array_item(array, (size_t)which)); |
| 2302 | } |
| 2303 | |
| 2304 | CJSON_PUBLIC(void) cJSON_DeleteItemFromArray(cJSON *array, int which) |
| 2305 | { |
no test coverage detected