| 2520 | } |
| 2521 | |
| 2522 | CJSON_PUBLIC(cJSON *) cJSON_CreateArray(void) |
| 2523 | { |
| 2524 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2525 | if(item) |
| 2526 | { |
| 2527 | item->type=cJSON_Array; |
| 2528 | } |
| 2529 | |
| 2530 | return item; |
| 2531 | } |
| 2532 | |
| 2533 | CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void) |
| 2534 | { |
no test coverage detected