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