| 2217 | } |
| 2218 | |
| 2219 | CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromArray(cJSON *array, int which) |
| 2220 | { |
| 2221 | if (which < 0) |
| 2222 | { |
| 2223 | return NULL; |
| 2224 | } |
| 2225 | |
| 2226 | return cJSON_DetachItemViaPointer(array, get_array_item(array, (size_t)which)); |
| 2227 | } |
| 2228 | |
| 2229 | CJSON_PUBLIC(void) cJSON_DeleteItemFromArray(cJSON *array, int which) |
| 2230 | { |
no test coverage detected