MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / strequal

Function strequal

Source/ThirdParty/pugixml/pugixml.cpp:190–199  ·  view source on GitHub ↗

Compare two strings

Source from the content-addressed store, hash-verified

188
189 // Compare two strings
190 PUGI__FN bool strequal(const char_t* src, const char_t* dst)
191 {
192 assert(src && dst);
193
194 #ifdef PUGIXML_WCHAR_MODE
195 return wcscmp(src, dst) == 0;
196 #else
197 return strcmp(src, dst) == 0;
198 #endif
199 }
200
201 // Compare lhs with [rhs_begin, rhs_end)
202 PUGI__FN bool strequalrange(const char_t* lhs, const char_t* rhs, size_t count)

Callers 12

childMethod · 0.70
attributeMethod · 0.70
next_siblingMethod · 0.70
previous_siblingMethod · 0.70
pugixml.cppFile · 0.70
operator==Function · 0.70
operator!=Function · 0.70
step_pushMethod · 0.70
eval_booleanMethod · 0.70
findMethod · 0.70
addMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected