| 2795 | } |
| 2796 | |
| 2797 | CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item) |
| 2798 | { |
| 2799 | if (item == NULL) |
| 2800 | { |
| 2801 | return false; |
| 2802 | } |
| 2803 | |
| 2804 | return (item->type & 0xFF) == cJSON_Raw; |
| 2805 | } |
| 2806 | |
| 2807 | // #lizard forgives |
| 2808 | CJSON_PUBLIC(cJSON_bool) cJSON_Compare(const cJSON * const a, const cJSON * const b, const cJSON_bool case_sensitive) |
nothing calls this directly
no outgoing calls
no test coverage detected