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