| 2268 | } |
| 2269 | |
| 2270 | CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void) |
| 2271 | { |
| 2272 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2273 | if(item) |
| 2274 | { |
| 2275 | item->type = cJSON_False; |
| 2276 | } |
| 2277 | |
| 2278 | return item; |
| 2279 | } |
| 2280 | |
| 2281 | CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool b) |
| 2282 | { |
no test coverage detected