| 2078 | } |
| 2079 | |
| 2080 | CJSON_PUBLIC(cJSON_bool) cJSON_AddItemReferenceToObject(cJSON *object, const char *string, cJSON *item) |
| 2081 | { |
| 2082 | if ((object == NULL) || (string == NULL)) |
| 2083 | { |
| 2084 | return false; |
| 2085 | } |
| 2086 | |
| 2087 | return add_item_to_object(object, string, create_reference(item, &global_hooks), &global_hooks, false); |
| 2088 | } |
| 2089 | |
| 2090 | CJSON_PUBLIC(cJSON*) cJSON_AddNullToObject(cJSON * const object, const char * const name) |
| 2091 | { |
no test coverage detected
searching dependent graphs…