| 2412 | } |
| 2413 | |
| 2414 | CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void) |
| 2415 | { |
| 2416 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2417 | if(item) |
| 2418 | { |
| 2419 | item->type = cJSON_False; |
| 2420 | } |
| 2421 | |
| 2422 | return item; |
| 2423 | } |
| 2424 | |
| 2425 | CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean) |
| 2426 | { |
no test coverage detected