| 2965 | } |
| 2966 | |
| 2967 | CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item) |
| 2968 | { |
| 2969 | if (item == NULL) |
| 2970 | { |
| 2971 | return false; |
| 2972 | } |
| 2973 | |
| 2974 | return (item->type & 0xFF) == cJSON_Raw; |
| 2975 | } |
| 2976 | |
| 2977 | CJSON_PUBLIC(cJSON_bool) cJSON_Compare(const cJSON * const a, const cJSON * const b, const cJSON_bool case_sensitive) |
| 2978 | { |
nothing calls this directly
no outgoing calls
no test coverage detected