| 2121 | } |
| 2122 | |
| 2123 | cJSON *cJSON_CreateTrue(void) |
| 2124 | { |
| 2125 | cJSON *item = cJSON_New_Item(); |
| 2126 | if(item) |
| 2127 | { |
| 2128 | item->type = cJSON_True; |
| 2129 | } |
| 2130 | |
| 2131 | return item; |
| 2132 | } |
| 2133 | |
| 2134 | cJSON *cJSON_CreateFalse(void) |
| 2135 | { |
nothing calls this directly
no test coverage detected