diff options
Diffstat (limited to 'base/string_util.h')
-rw-r--r-- | base/string_util.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/base/string_util.h b/base/string_util.h index c32bef3..84cb6e5 100644 --- a/base/string_util.h +++ b/base/string_util.h @@ -316,6 +316,10 @@ bool LowerCaseEqualsASCII(const wchar_t* a_begin, const wchar_t* a_end, const char* b); +// Performs a case-sensitive string compare. The behavior is undefined if both +// strings are not ASCII. +bool EqualsASCII(const string16& a, const StringPiece& b); + // Returns true if str starts with search, or false otherwise. bool StartsWithASCII(const std::string& str, const std::string& search, |