| 2123 | } |
| 2124 | |
| 2125 | CJSON_PUBLIC(cJSON_bool) cJSON_AddItemReferenceToObject(cJSON *object, const char *string, cJSON *item) |
| 2126 | { |
| 2127 | if ((object == NULL) || (string == NULL)) |
| 2128 | { |
| 2129 | return false; |
| 2130 | } |
| 2131 | |
| 2132 | return add_item_to_object(object, string, create_reference(item, &global_hooks), &global_hooks, false); |
| 2133 | } |
| 2134 | |
| 2135 | CJSON_PUBLIC(cJSON*) cJSON_AddNullToObject(cJSON * const object, const char * const name) |
| 2136 | { |
searching dependent graphs…