| 2383 | } |
| 2384 | |
| 2385 | CJSON_PUBLIC(cJSON *) cJSON_CreateArray(void) |
| 2386 | { |
| 2387 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2388 | if(item) |
| 2389 | { |
| 2390 | item->type=cJSON_Array; |
| 2391 | } |
| 2392 | |
| 2393 | return item; |
| 2394 | } |
| 2395 | |
| 2396 | CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void) |
| 2397 | { |
no test coverage detected