| 2382 | } |
| 2383 | |
| 2384 | CJSON_PUBLIC(cJSON *) cJSON_CreateStringReference(const char *string) |
| 2385 | { |
| 2386 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2387 | if (item != NULL) |
| 2388 | { |
| 2389 | item->type = cJSON_String | cJSON_IsReference; |
| 2390 | item->valuestring = (char*)cast_away_const(string); |
| 2391 | } |
| 2392 | |
| 2393 | return item; |
| 2394 | } |
| 2395 | |
| 2396 | CJSON_PUBLIC(cJSON *) cJSON_CreateObjectReference(const cJSON *child) |
| 2397 | { |
nothing calls this directly
no test coverage detected