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