| 1036 | return item; |
| 1037 | } |
| 1038 | cJSON *cJSON_CreateObject() |
| 1039 | { |
| 1040 | cJSON *item = cJSON_New_Item(); |
| 1041 | if (item) |
| 1042 | item->type = cJSON_Object; |
| 1043 | return item; |
| 1044 | } |
| 1045 | |
| 1046 | /* Create Arrays: */ |
| 1047 | cJSON *cJSON_CreateIntArray(int *numbers, int sign, int count) |
no test coverage detected