| 2455 | } |
| 2456 | |
| 2457 | CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void) |
| 2458 | { |
| 2459 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2460 | if(item) |
| 2461 | { |
| 2462 | item->type = cJSON_True; |
| 2463 | } |
| 2464 | |
| 2465 | return item; |
| 2466 | } |
| 2467 | |
| 2468 | CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void) |
| 2469 | { |
no test coverage detected
searching dependent graphs…