| 1943 | } |
| 1944 | |
| 1945 | void cJSON_AddItemReferenceToArray(cJSON *array, cJSON *item) |
| 1946 | { |
| 1947 | cJSON_AddItemToArray(array, create_reference(item)); |
| 1948 | } |
| 1949 | |
| 1950 | void cJSON_AddItemReferenceToObject(cJSON *object, const char *string, cJSON *item) |
| 1951 | { |
nothing calls this directly
no test coverage detected