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