| 1948 | } |
| 1949 | |
| 1950 | void cJSON_AddItemReferenceToObject(cJSON *object, const char *string, cJSON *item) |
| 1951 | { |
| 1952 | cJSON_AddItemToObject(object, string, create_reference(item)); |
| 1953 | } |
| 1954 | |
| 1955 | static cJSON *DetachItemFromArray(cJSON *array, size_t which) |
| 1956 | { |
nothing calls this directly
no test coverage detected