| 2282 | } |
| 2283 | |
| 2284 | CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void) |
| 2285 | { |
| 2286 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2287 | if(item) |
| 2288 | { |
| 2289 | item->type = cJSON_False; |
| 2290 | } |
| 2291 | |
| 2292 | return item; |
| 2293 | } |
| 2294 | |
| 2295 | CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool b) |
| 2296 | { |
no test coverage detected