| 2132 | } |
| 2133 | |
| 2134 | cJSON *cJSON_CreateFalse(void) |
| 2135 | { |
| 2136 | cJSON *item = cJSON_New_Item(); |
| 2137 | if(item) |
| 2138 | { |
| 2139 | item->type = cJSON_False; |
| 2140 | } |
| 2141 | |
| 2142 | return item; |
| 2143 | } |
| 2144 | |
| 2145 | cJSON *cJSON_CreateBool(cjbool b) |
| 2146 | { |
nothing calls this directly
no test coverage detected