| 2401 | } |
| 2402 | |
| 2403 | CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void) |
| 2404 | { |
| 2405 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2406 | if(item) |
| 2407 | { |
| 2408 | item->type = cJSON_True; |
| 2409 | } |
| 2410 | |
| 2411 | return item; |
| 2412 | } |
| 2413 | |
| 2414 | CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void) |
| 2415 | { |
no test coverage detected