| 2755 | } |
| 2756 | |
| 2757 | CJSON_PUBLIC(cJSON_bool) cJSON_IsNumber(const cJSON * const item) |
| 2758 | { |
| 2759 | if (item == NULL) |
| 2760 | { |
| 2761 | return false; |
| 2762 | } |
| 2763 | |
| 2764 | return (item->type & 0xFF) == cJSON_Number; |
| 2765 | } |
| 2766 | |
| 2767 | CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item) |
| 2768 | { |
nothing calls this directly
no outgoing calls
no test coverage detected