| 2389 | } |
| 2390 | |
| 2391 | CJSON_PUBLIC(cJSON *) cJSON_CreateArray(void) |
| 2392 | { |
| 2393 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2394 | if(item) |
| 2395 | { |
| 2396 | item->type=cJSON_Array; |
| 2397 | } |
| 2398 | |
| 2399 | return item; |
| 2400 | } |
| 2401 | |
| 2402 | CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void) |
| 2403 | { |
no test coverage detected