| 2392 | } |
| 2393 | |
| 2394 | CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void) |
| 2395 | { |
| 2396 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2397 | if (item) |
| 2398 | { |
| 2399 | item->type = cJSON_Object; |
| 2400 | } |
| 2401 | |
| 2402 | return item; |
| 2403 | } |
| 2404 | |
| 2405 | /* Create Arrays: */ |
| 2406 | CJSON_PUBLIC(cJSON *) cJSON_CreateIntArray(const int *numbers, int count) |
no test coverage detected