| 2511 | } |
| 2512 | |
| 2513 | CJSON_PUBLIC(cJSON *) cJSON_CreateArray(void) |
| 2514 | { |
| 2515 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2516 | if(item) |
| 2517 | { |
| 2518 | item->type=cJSON_Array; |
| 2519 | } |
| 2520 | |
| 2521 | return item; |
| 2522 | } |
| 2523 | |
| 2524 | CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void) |
| 2525 | { |
no test coverage detected