| 2543 | } |
| 2544 | |
| 2545 | CJSON_PUBLIC(cJSON *) cJSON_CreateObjectReference(const cJSON *child) |
| 2546 | { |
| 2547 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2548 | if (item != NULL) { |
| 2549 | item->type = cJSON_Object | cJSON_IsReference; |
| 2550 | item->child = (cJSON*)cast_away_const(child); |
| 2551 | } |
| 2552 | |
| 2553 | return item; |
| 2554 | } |
| 2555 | |
| 2556 | CJSON_PUBLIC(cJSON *) cJSON_CreateArrayReference(const cJSON *child) { |
| 2557 | cJSON *item = cJSON_New_Item(&global_hooks); |
searching dependent graphs…