| 987 | return item; |
| 988 | } |
| 989 | cJSON *cJSON_CreateFalse() |
| 990 | { |
| 991 | cJSON *item = cJSON_New_Item(); |
| 992 | if (item) |
| 993 | item->type = cJSON_False; |
| 994 | return item; |
| 995 | } |
| 996 | cJSON *cJSON_CreateBool(int b) |
| 997 | { |
| 998 | cJSON *item = cJSON_New_Item(); |
nothing calls this directly
no test coverage detected