| 819 | return item; |
| 820 | } |
| 821 | cJSON *cJSON_CreateArray() { |
| 822 | cJSON *item = cJSON_New_Item(); |
| 823 | if (item) item->type = cJSON_Array; |
| 824 | return item; |
| 825 | } |
| 826 | cJSON *cJSON_CreateObject() { |
| 827 | cJSON *item = cJSON_New_Item(); |
| 828 | if (item) item->type = cJSON_Object; |
no test coverage detected