| 718 | } |
| 719 | void cJSON_AddItemReferenceToArray(cJSON *array, cJSON *item) { cJSON_AddItemToArray(array, create_reference(item)); } |
| 720 | void cJSON_AddItemReferenceToObject(cJSON *object, const char *string, cJSON *item) { |
| 721 | cJSON_AddItemToObject(object, string, create_reference(item)); |
| 722 | } |
| 723 | |
| 724 | cJSON *cJSON_DetachItemFromArray(cJSON *array, int which) { |
| 725 | cJSON *c = array->child; |
nothing calls this directly
no test coverage detected