| 2543 | } |
| 2544 | |
| 2545 | CJSON_PUBLIC(cJSON *) cJSON_CreateArray(void) |
| 2546 | { |
| 2547 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2548 | if(item) |
| 2549 | { |
| 2550 | item->type=cJSON_Array; |
| 2551 | } |
| 2552 | |
| 2553 | return item; |
| 2554 | } |
| 2555 | |
| 2556 | CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void) |
| 2557 | { |
no test coverage detected