| 2400 | } |
| 2401 | |
| 2402 | CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void) |
| 2403 | { |
| 2404 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2405 | if (item) |
| 2406 | { |
| 2407 | item->type = cJSON_Object; |
| 2408 | } |
| 2409 | |
| 2410 | return item; |
| 2411 | } |
| 2412 | |
| 2413 | /* Create Arrays: */ |
| 2414 | CJSON_PUBLIC(cJSON *) cJSON_CreateIntArray(const int *numbers, int count) |
no test coverage detected