| 2996 | } |
| 2997 | |
| 2998 | CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item) |
| 2999 | { |
| 3000 | if (item == NULL) |
| 3001 | { |
| 3002 | return false; |
| 3003 | } |
| 3004 | |
| 3005 | return (item->type & 0xFF) == cJSON_Raw; |
| 3006 | } |
| 3007 | |
| 3008 | CJSON_PUBLIC(cJSON_bool) cJSON_Compare(const cJSON * const a, const cJSON * const b, const cJSON_bool case_sensitive) |
| 3009 | { |
nothing calls this directly
no outgoing calls
no test coverage detected