Merge "EndsWith *suffix*"
This commit is contained in:
commit
73664df55e
1 changed files with 2 additions and 2 deletions
|
@ -67,8 +67,8 @@ bool StartsWithIgnoreCase(const std::string& s, const std::string& prefix);
|
|||
// TODO: string_view
|
||||
bool EndsWith(const std::string& s, const char* suffix);
|
||||
bool EndsWithIgnoreCase(const std::string& s, const char* suffix);
|
||||
bool EndsWith(const std::string& s, const std::string& prefix);
|
||||
bool EndsWithIgnoreCase(const std::string& s, const std::string& prefix);
|
||||
bool EndsWith(const std::string& s, const std::string& suffix);
|
||||
bool EndsWithIgnoreCase(const std::string& s, const std::string& suffix);
|
||||
|
||||
// Tests whether 'lhs' equals 'rhs', ignoring case.
|
||||
bool EqualsIgnoreCase(const std::string& lhs, const std::string& rhs);
|
||||
|
|
Loading…
Reference in a new issue