| 2944 | } |
| 2945 | |
| 2946 | CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item) |
| 2947 | { |
| 2948 | if (item == NULL) |
| 2949 | { |
| 2950 | return false; |
| 2951 | } |
| 2952 | |
| 2953 | return (item->type & 0xFF) == cJSON_String; |
| 2954 | } |
| 2955 | |
| 2956 | CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item) |
| 2957 | { |
no outgoing calls
no test coverage detected