| 2581 | } |
| 2582 | |
| 2583 | CJSON_PUBLIC(cJSON *) cJSON_CreateArray(void) |
| 2584 | { |
| 2585 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2586 | if(item) |
| 2587 | { |
| 2588 | item->type=cJSON_Array; |
| 2589 | } |
| 2590 | |
| 2591 | return item; |
| 2592 | } |
| 2593 | |
| 2594 | CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void) |
| 2595 | { |
searching dependent graphs…