| 2099 | } |
| 2100 | |
| 2101 | CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromArray(cJSON *array, int which) |
| 2102 | { |
| 2103 | if (which < 0) |
| 2104 | { |
| 2105 | return NULL; |
| 2106 | } |
| 2107 | |
| 2108 | return cJSON_DetachItemViaPointer(array, get_array_item(array, (size_t)which)); |
| 2109 | } |
| 2110 | |
| 2111 | CJSON_PUBLIC(void) cJSON_DeleteItemFromArray(cJSON *array, int which) |
| 2112 | { |
no test coverage detected