| 2107 | } |
| 2108 | |
| 2109 | CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromArray(cJSON *array, int which) |
| 2110 | { |
| 2111 | if (which < 0) |
| 2112 | { |
| 2113 | return NULL; |
| 2114 | } |
| 2115 | |
| 2116 | return cJSON_DetachItemViaPointer(array, get_array_item(array, (size_t)which)); |
| 2117 | } |
| 2118 | |
| 2119 | CJSON_PUBLIC(void) cJSON_DeleteItemFromArray(cJSON *array, int which) |
| 2120 | { |
no test coverage detected