| 2333 | } |
| 2334 | |
| 2335 | CJSON_PUBLIC(cJSON *) cJSON_CreateStringReference(const char *string) |
| 2336 | { |
| 2337 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2338 | if (item != NULL) |
| 2339 | { |
| 2340 | item->type = cJSON_String | cJSON_IsReference; |
| 2341 | item->valuestring = (char*)cast_away_const(string); |
| 2342 | } |
| 2343 | |
| 2344 | return item; |
| 2345 | } |
| 2346 | |
| 2347 | CJSON_PUBLIC(cJSON *) cJSON_CreateObjectReference(const cJSON *child) |
| 2348 | { |
nothing calls this directly
no test coverage detected