MCPcopy Create free account
hub / github.com/CodingGay/BlackDex / EndsWithIgnoreCase

Function EndsWithIgnoreCase

Bcore/src/main/cpp/android-base/strings.cpp:124–126  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

122}
123
124bool EndsWithIgnoreCase(const std::string& s, const char* suffix) {
125 return EndsWith(s, suffix, strlen(suffix), false);
126}
127
128bool EndsWithIgnoreCase(const std::string& s, const std::string& suffix) {
129 return EndsWith(s, suffix.c_str(), suffix.size(), false);

Callers

nothing calls this directly

Calls 3

c_strMethod · 0.80
EndsWithFunction · 0.70
sizeMethod · 0.45

Tested by

no test coverage detected