| 276 | } |
| 277 | |
| 278 | int BString::compareTo(const BString& s, bool ignoreCase, int offset, int len) const { |
| 279 | return compareTo(s.data->str, ignoreCase, offset, len); |
| 280 | } |
| 281 | |
| 282 | int BString::compareTo(const char* s, bool ignoreCase, int offset, int len) const { |
| 283 | if (!s) { |
no outgoing calls
no test coverage detected