| 888 | cJSON_AddItemToArray(object, item); |
| 889 | } |
| 890 | void cJSON_AddItemReferenceToArray(cJSON *array, cJSON *item) |
| 891 | { |
| 892 | cJSON_AddItemToArray(array, create_reference(item)); |
| 893 | } |
| 894 | void cJSON_AddItemReferenceToObject(cJSON *object, const char *string, |
| 895 | cJSON *item) |
| 896 | { |
nothing calls this directly
no test coverage detected