| 2242 | } |
| 2243 | |
| 2244 | cJSON *cJSON_CreateObject(void) |
| 2245 | { |
| 2246 | cJSON *item = cJSON_New_Item(); |
| 2247 | if (item) |
| 2248 | { |
| 2249 | item->type = cJSON_Object; |
| 2250 | } |
| 2251 | |
| 2252 | return item; |
| 2253 | } |
| 2254 | |
| 2255 | /* Create Arrays: */ |
| 2256 | cJSON *cJSON_CreateIntArray(const int *numbers, int count) |
no test coverage detected