| 2785 | } |
| 2786 | |
| 2787 | CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item) |
| 2788 | { |
| 2789 | if (item == NULL) |
| 2790 | { |
| 2791 | return false; |
| 2792 | } |
| 2793 | |
| 2794 | return (item->type & 0xFF) == cJSON_Object; |
| 2795 | } |
| 2796 | |
| 2797 | CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item) |
| 2798 | { |
nothing calls this directly
no outgoing calls
no test coverage detected