| 1042 | return item; |
| 1043 | } |
| 1044 | cJSON *cJSON_CreateObject() |
| 1045 | { |
| 1046 | cJSON *item = cJSON_New_Item(); |
| 1047 | if (item) |
| 1048 | item->type = cJSON_Object; |
| 1049 | return item; |
| 1050 | } |
| 1051 | |
| 1052 | /* Create Arrays: */ |
| 1053 | cJSON *cJSON_CreateIntArray(int *numbers, int sign, int count) |
no test coverage detected