| 2407 | } |
| 2408 | |
| 2409 | CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean) |
| 2410 | { |
| 2411 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2412 | if(item) |
| 2413 | { |
| 2414 | item->type = boolean ? cJSON_True : cJSON_False; |
| 2415 | } |
| 2416 | |
| 2417 | return item; |
| 2418 | } |
| 2419 | |
| 2420 | CJSON_PUBLIC(cJSON *) cJSON_CreateNumber(double num) |
| 2421 | { |
no test coverage detected