| 2818 | } |
| 2819 | |
| 2820 | CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item) |
| 2821 | { |
| 2822 | if (item == NULL) |
| 2823 | { |
| 2824 | return false; |
| 2825 | } |
| 2826 | |
| 2827 | return (item->type & 0xFF) == cJSON_Object; |
| 2828 | } |
| 2829 | |
| 2830 | CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item) |
| 2831 | { |
no outgoing calls
no test coverage detected