| 2239 | } |
| 2240 | |
| 2241 | CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromArray(cJSON *array, int which) |
| 2242 | { |
| 2243 | if (which < 0) |
| 2244 | { |
| 2245 | return NULL; |
| 2246 | } |
| 2247 | |
| 2248 | return cJSON_DetachItemViaPointer(array, get_array_item(array, (size_t)which)); |
| 2249 | } |
| 2250 | |
| 2251 | CJSON_PUBLIC(void) cJSON_DeleteItemFromArray(cJSON *array, int which) |
| 2252 | { |
no test coverage detected