| 2263 | } |
| 2264 | |
| 2265 | CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void) |
| 2266 | { |
| 2267 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2268 | if(item) |
| 2269 | { |
| 2270 | item->type = cJSON_True; |
| 2271 | } |
| 2272 | |
| 2273 | return item; |
| 2274 | } |
| 2275 | |
| 2276 | CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void) |
| 2277 | { |
no test coverage detected