| 2416 | } |
| 2417 | |
| 2418 | CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean) |
| 2419 | { |
| 2420 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2421 | if(item) |
| 2422 | { |
| 2423 | item->type = boolean ? cJSON_True : cJSON_False; |
| 2424 | } |
| 2425 | |
| 2426 | return item; |
| 2427 | } |
| 2428 | |
| 2429 | CJSON_PUBLIC(cJSON *) cJSON_CreateNumber(double num) |
| 2430 | { |
no test coverage detected