| 2596 | } |
| 2597 | |
| 2598 | CJSON_PUBLIC(cJSON *) cJSON_CreateArray(void) |
| 2599 | { |
| 2600 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2601 | if(item) |
| 2602 | { |
| 2603 | item->type=cJSON_Array; |
| 2604 | } |
| 2605 | |
| 2606 | return item; |
| 2607 | } |
| 2608 | |
| 2609 | CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void) |
| 2610 | { |
no test coverage detected