| 2274 | } |
| 2275 | |
| 2276 | CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void) |
| 2277 | { |
| 2278 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2279 | if(item) |
| 2280 | { |
| 2281 | item->type = cJSON_False; |
| 2282 | } |
| 2283 | |
| 2284 | return item; |
| 2285 | } |
| 2286 | |
| 2287 | CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool b) |
| 2288 | { |
no test coverage detected