| 824 | return item; |
| 825 | } |
| 826 | cJSON *cJSON_CreateObject() { |
| 827 | cJSON *item = cJSON_New_Item(); |
| 828 | if (item) item->type = cJSON_Object; |
| 829 | return item; |
| 830 | } |
| 831 | |
| 832 | /* Create Arrays: */ |
| 833 | cJSON *cJSON_CreateIntArray(int *numbers, int sign, int count) { |
no test coverage detected