| 2954 | } |
| 2955 | |
| 2956 | CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item) |
| 2957 | { |
| 2958 | if (item == NULL) |
| 2959 | { |
| 2960 | return false; |
| 2961 | } |
| 2962 | |
| 2963 | return (item->type & 0xFF) == cJSON_String; |
| 2964 | } |
| 2965 | |
| 2966 | CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item) |
| 2967 | { |
no outgoing calls
no test coverage detected