| 980 | return item; |
| 981 | } |
| 982 | cJSON *cJSON_CreateTrue() |
| 983 | { |
| 984 | cJSON *item = cJSON_New_Item(); |
| 985 | if (item) |
| 986 | item->type = cJSON_True; |
| 987 | return item; |
| 988 | } |
| 989 | cJSON *cJSON_CreateFalse() |
| 990 | { |
| 991 | cJSON *item = cJSON_New_Item(); |
nothing calls this directly
no test coverage detected