| 2554 | } |
| 2555 | |
| 2556 | CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void) |
| 2557 | { |
| 2558 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2559 | if (item) |
| 2560 | { |
| 2561 | item->type = cJSON_Object; |
| 2562 | } |
| 2563 | |
| 2564 | return item; |
| 2565 | } |
| 2566 | |
| 2567 | /* Create Arrays: */ |
| 2568 | CJSON_PUBLIC(cJSON *) cJSON_CreateIntArray(const int *numbers, int count) |