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