| 2607 | } |
| 2608 | |
| 2609 | CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void) |
| 2610 | { |
| 2611 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2612 | if (item) |
| 2613 | { |
| 2614 | item->type = cJSON_Object; |
| 2615 | } |
| 2616 | |
| 2617 | return item; |
| 2618 | } |
| 2619 | |
| 2620 | /* Create Arrays: */ |
| 2621 | CJSON_PUBLIC(cJSON *) cJSON_CreateIntArray(const int *numbers, int count) |
no test coverage detected