| 2925 | } |
| 2926 | |
| 2927 | CJSON_PUBLIC(cJSON_bool) cJSON_IsNumber(const cJSON * const item) |
| 2928 | { |
| 2929 | if (item == NULL) |
| 2930 | { |
| 2931 | return false; |
| 2932 | } |
| 2933 | |
| 2934 | return (item->type & 0xFF) == cJSON_Number; |
| 2935 | } |
| 2936 | |
| 2937 | CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item) |
| 2938 | { |
no outgoing calls
no test coverage detected