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