| 269 | } |
| 270 | |
| 271 | char BString::charAt(int i) const { |
| 272 | if (i < data->len) { |
| 273 | return data->str[i]; |
| 274 | } |
| 275 | return 0; |
| 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); |
no outgoing calls
no test coverage detected