| 2293 | } |
| 2294 | |
| 2295 | CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool b) |
| 2296 | { |
| 2297 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2298 | if(item) |
| 2299 | { |
| 2300 | item->type = b ? cJSON_True : cJSON_False; |
| 2301 | } |
| 2302 | |
| 2303 | return item; |
| 2304 | } |
| 2305 | |
| 2306 | CJSON_PUBLIC(cJSON *) cJSON_CreateNumber(double num) |
| 2307 | { |
no test coverage detected