| 2405 | } |
| 2406 | |
| 2407 | CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void) |
| 2408 | { |
| 2409 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2410 | if(item) |
| 2411 | { |
| 2412 | item->type = cJSON_True; |
| 2413 | } |
| 2414 | |
| 2415 | return item; |
| 2416 | } |
| 2417 | |
| 2418 | CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void) |
| 2419 | { |
no test coverage detected
searching dependent graphs…