Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c4a42dd6 authored by Erik Kline's avatar Erik Kline Committed by android-build-merger
Browse files

Merge "EndsWith *suffix*"

am: 73664df5

Change-Id: I7c2a04e4620ecbf1b1e539e5b6e31c1802833d51
parents 81e692c0 73664df5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);