MCPcopy Create free account
hub / github.com/ClassiCube/ClassiCube / String_Equals

Function String_Equals

src/String.c:120–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

118
119
120int String_Equals(const cc_string* a, const cc_string* b) {
121 return a->length == b->length && Mem_Equal(a->buffer, b->buffer, a->length);
122}
123
124int String_CaselessEquals(const cc_string* a, const cc_string* b) {
125 int i;

Callers 15

HttpUrl_ParseFunction · 0.85
ConnectionPool_OpenFunction · 0.85
ApplyDownloadedFunction · 0.85
TexturePack_ExtractFunction · 0.85
CheckSkin_UncheckedFunction · 0.85
Entity_SetSkinAllFunction · 0.85
TabList_SetFunction · 0.85
LogInputUsageFunction · 0.85
LBackend_TableRowColorFunction · 0.85

Calls 1

Mem_EqualFunction · 0.85

Tested by

no test coverage detected