| 892 | cJSON_AddItemToArray(array, create_reference(item)); |
| 893 | } |
| 894 | void cJSON_AddItemReferenceToObject(cJSON *object, const char *string, |
| 895 | cJSON *item) |
| 896 | { |
| 897 | cJSON_AddItemToObject(object, string, create_reference(item)); |
| 898 | } |
| 899 | |
| 900 | cJSON *cJSON_DetachItemFromArray(cJSON *array, int which) |
| 901 | { |
nothing calls this directly
no test coverage detected