| 2423 | } |
| 2424 | |
| 2425 | CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean) |
| 2426 | { |
| 2427 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2428 | if(item) |
| 2429 | { |
| 2430 | item->type = boolean ? cJSON_True : cJSON_False; |
| 2431 | } |
| 2432 | |
| 2433 | return item; |
| 2434 | } |
| 2435 | |
| 2436 | CJSON_PUBLIC(cJSON *) cJSON_CreateNumber(double num) |
| 2437 | { |
no test coverage detected