| 2432 | } |
| 2433 | |
| 2434 | CJSON_PUBLIC(cJSON *) cJSON_CreateArray(void) |
| 2435 | { |
| 2436 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2437 | if(item) |
| 2438 | { |
| 2439 | item->type=cJSON_Array; |
| 2440 | } |
| 2441 | |
| 2442 | return item; |
| 2443 | } |
| 2444 | |
| 2445 | CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void) |
| 2446 | { |
no test coverage detected