blob: ea1b39e161367b9eb2912035fd7992a240f2c0d7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#include "case.h"
#include <util/string/ascii.h>
namespace NSQLComplete {
bool NoCaseCompare(const TString& lhs, const TString& rhs) {
return AsciiCompareIgnoreCase(lhs, rhs) < 0;
}
} // namespace NSQLComplete
|