| 2255 | } |
| 2256 | |
| 2257 | CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void) |
| 2258 | { |
| 2259 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2260 | if(item) |
| 2261 | { |
| 2262 | item->type = cJSON_True; |
| 2263 | } |
| 2264 | |
| 2265 | return item; |
| 2266 | } |
| 2267 | |
| 2268 | CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void) |
| 2269 | { |
no test coverage detected