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