| 2271 | } |
| 2272 | |
| 2273 | CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void) |
| 2274 | { |
| 2275 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2276 | if(item) |
| 2277 | { |
| 2278 | item->type = cJSON_True; |
| 2279 | } |
| 2280 | |
| 2281 | return item; |
| 2282 | } |
| 2283 | |
| 2284 | CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void) |
| 2285 | { |
no test coverage detected