| 2531 | } |
| 2532 | |
| 2533 | CJSON_PUBLIC(cJSON *) cJSON_CreateStringReference(const char *string) |
| 2534 | { |
| 2535 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2536 | if (item != NULL) |
| 2537 | { |
| 2538 | item->type = cJSON_String | cJSON_IsReference; |
| 2539 | item->valuestring = (char*)cast_away_const(string); |
| 2540 | } |
| 2541 | |
| 2542 | return item; |
| 2543 | } |
| 2544 | |
| 2545 | CJSON_PUBLIC(cJSON *) cJSON_CreateObjectReference(const cJSON *child) |
| 2546 | { |
searching dependent graphs…