| 2986 | } |
| 2987 | |
| 2988 | CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item) |
| 2989 | { |
| 2990 | if (item == NULL) |
| 2991 | { |
| 2992 | return false; |
| 2993 | } |
| 2994 | |
| 2995 | return (item->type & 0xFF) == cJSON_Object; |
| 2996 | } |
| 2997 | |
| 2998 | CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item) |
| 2999 | { |
nothing calls this directly
no outgoing calls
no test coverage detected