| 2542 | } |
| 2543 | |
| 2544 | CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void) |
| 2545 | { |
| 2546 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2547 | if (item) |
| 2548 | { |
| 2549 | item->type = cJSON_Object; |
| 2550 | } |
| 2551 | |
| 2552 | return item; |
| 2553 | } |
| 2554 | |
| 2555 | /* Create Arrays: */ |
| 2556 | CJSON_PUBLIC(cJSON *) cJSON_CreateIntArray(const int *numbers, int count) |
no test coverage detected
searching dependent graphs…