| 2522 | } |
| 2523 | |
| 2524 | CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void) |
| 2525 | { |
| 2526 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2527 | if (item) |
| 2528 | { |
| 2529 | item->type = cJSON_Object; |
| 2530 | } |
| 2531 | |
| 2532 | return item; |
| 2533 | } |
| 2534 | |
| 2535 | /* Create Arrays: */ |
| 2536 | CJSON_PUBLIC(cJSON *) cJSON_CreateIntArray(const int *numbers, int count) |
no test coverage detected