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