| 2396 | } |
| 2397 | |
| 2398 | CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void) |
| 2399 | { |
| 2400 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2401 | if(item) |
| 2402 | { |
| 2403 | item->type = cJSON_False; |
| 2404 | } |
| 2405 | |
| 2406 | return item; |
| 2407 | } |
| 2408 | |
| 2409 | CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean) |
| 2410 | { |
no test coverage detected