| 2481 | } |
| 2482 | |
| 2483 | CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void) |
| 2484 | { |
| 2485 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2486 | if(item) |
| 2487 | { |
| 2488 | item->type = cJSON_False; |
| 2489 | } |
| 2490 | |
| 2491 | return item; |
| 2492 | } |
| 2493 | |
| 2494 | CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean) |
| 2495 | { |
no test coverage detected