| 2757 | } |
| 2758 | |
| 2759 | CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item) |
| 2760 | { |
| 2761 | if (item == NULL) |
| 2762 | { |
| 2763 | return false; |
| 2764 | } |
| 2765 | |
| 2766 | return (item->type & 0xFF) == cJSON_String; |
| 2767 | } |
| 2768 | |
| 2769 | CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item) |
| 2770 | { |
no outgoing calls
no test coverage detected