| 2279 | } |
| 2280 | |
| 2281 | CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool b) |
| 2282 | { |
| 2283 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2284 | if(item) |
| 2285 | { |
| 2286 | item->type = b ? cJSON_True : cJSON_False; |
| 2287 | } |
| 2288 | |
| 2289 | return item; |
| 2290 | } |
| 2291 | |
| 2292 | CJSON_PUBLIC(cJSON *) cJSON_CreateNumber(double num) |
| 2293 | { |
no test coverage detected