| 3030 | } |
| 3031 | |
| 3032 | CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item) |
| 3033 | { |
| 3034 | if (item == NULL) |
| 3035 | { |
| 3036 | return false; |
| 3037 | } |
| 3038 | |
| 3039 | return (item->type & 0xFF) == cJSON_String; |
| 3040 | } |
| 3041 | |
| 3042 | CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item) |
| 3043 | { |
no outgoing calls
no test coverage detected