| 2224 | } |
| 2225 | |
| 2226 | CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromArray(cJSON *array, int which) |
| 2227 | { |
| 2228 | if (which < 0) |
| 2229 | { |
| 2230 | return NULL; |
| 2231 | } |
| 2232 | |
| 2233 | return cJSON_DetachItemViaPointer(array, get_array_item(array, (size_t)which)); |
| 2234 | } |
| 2235 | |
| 2236 | CJSON_PUBLIC(void) cJSON_DeleteItemFromArray(cJSON *array, int which) |
| 2237 | { |
no test coverage detected