MCPcopy Create free account
hub / github.com/PenguLoader/PenguLoader / equal

Method equal

core/src/utils/cefstr.cc:14–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12}
13
14bool CefStrBase::equal(const char *that) const
15{
16 size_t i;
17 for (i = 0; that[i] != '\0'; ++i) {
18 if (i >= length)
19 return false;
20 if (str[i] != that[i])
21 return false;
22 }
23
24 return length == i;
25}
26
27bool CefStrBase::contain(const char *sub) const
28{

Callers 1

HookMainBrowserClientFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected