| 2417 | } |
| 2418 | |
| 2419 | CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void) |
| 2420 | { |
| 2421 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2422 | if(item) |
| 2423 | { |
| 2424 | item->type = cJSON_True; |
| 2425 | } |
| 2426 | |
| 2427 | return item; |
| 2428 | } |
| 2429 | |
| 2430 | CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void) |
| 2431 | { |
no test coverage detected