| 2765 | } |
| 2766 | |
| 2767 | CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item) |
| 2768 | { |
| 2769 | if (item == NULL) |
| 2770 | { |
| 2771 | return false; |
| 2772 | } |
| 2773 | |
| 2774 | return (item->type & 0xFF) == cJSON_String; |
| 2775 | } |
| 2776 | |
| 2777 | CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item) |
| 2778 | { |
no outgoing calls
no test coverage detected