| 2395 | } |
| 2396 | |
| 2397 | CJSON_PUBLIC(cJSON *) cJSON_CreateArray(void) |
| 2398 | { |
| 2399 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2400 | if(item) |
| 2401 | { |
| 2402 | item->type=cJSON_Array; |
| 2403 | } |
| 2404 | |
| 2405 | return item; |
| 2406 | } |
| 2407 | |
| 2408 | CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void) |
| 2409 | { |
no test coverage detected