Merge "EndsWith *suffix*"
am: 73664df55e
Change-Id: I7c2a04e4620ecbf1b1e539e5b6e31c1802833d51
This commit is contained in:
commit
c4a42dd62d
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