| 2439 | } |
| 2440 | |
| 2441 | CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean) |
| 2442 | { |
| 2443 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2444 | if(item) |
| 2445 | { |
| 2446 | item->type = boolean ? cJSON_True : cJSON_False; |
| 2447 | } |
| 2448 | |
| 2449 | return item; |
| 2450 | } |
| 2451 | |
| 2452 | CJSON_PUBLIC(cJSON *) cJSON_CreateNumber(double num) |
| 2453 | { |
no test coverage detected