| 2530 | } |
| 2531 | |
| 2532 | CJSON_PUBLIC(cJSON *) cJSON_CreateArray(void) |
| 2533 | { |
| 2534 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2535 | if(item) |
| 2536 | { |
| 2537 | item->type=cJSON_Array; |
| 2538 | } |
| 2539 | |
| 2540 | return item; |
| 2541 | } |
| 2542 | |
| 2543 | CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void) |
| 2544 | { |
no test coverage detected