| 2285 | } |
| 2286 | |
| 2287 | CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool b) |
| 2288 | { |
| 2289 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2290 | if(item) |
| 2291 | { |
| 2292 | item->type = b ? cJSON_True : cJSON_False; |
| 2293 | } |
| 2294 | |
| 2295 | return item; |
| 2296 | } |
| 2297 | |
| 2298 | CJSON_PUBLIC(cJSON *) cJSON_CreateNumber(double num) |
| 2299 | { |
no test coverage detected