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