| 2385 | } |
| 2386 | |
| 2387 | CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void) |
| 2388 | { |
| 2389 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2390 | if(item) |
| 2391 | { |
| 2392 | item->type = cJSON_True; |
| 2393 | } |
| 2394 | |
| 2395 | return item; |
| 2396 | } |
| 2397 | |
| 2398 | CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void) |
| 2399 | { |
no test coverage detected