| 206 | } |
| 207 | |
| 208 | int32_t strCmpI(const StringView& _lhs, const StringView& _rhs, int32_t _max) |
| 209 | { |
| 210 | return strCmp<toLower>( |
| 211 | _lhs.getPtr() |
| 212 | , min(_lhs.getLength(), _max) |
| 213 | , _rhs.getPtr() |
| 214 | , min(_rhs.getLength(), _max) |
| 215 | ); |
| 216 | } |
| 217 | |
| 218 | inline int32_t strCmpV(const char* _lhs, int32_t _lhsMax, const char* _rhs, int32_t _rhsMax) |
| 219 | { |
no test coverage detected