| 2231 | } |
| 2232 | |
| 2233 | cJSON *cJSON_CreateArray(void) |
| 2234 | { |
| 2235 | cJSON *item = cJSON_New_Item(); |
| 2236 | if(item) |
| 2237 | { |
| 2238 | item->type=cJSON_Array; |
| 2239 | } |
| 2240 | |
| 2241 | return item; |
| 2242 | } |
| 2243 | |
| 2244 | cJSON *cJSON_CreateObject(void) |
| 2245 | { |
no test coverage detected