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

Function strlength

Source/ThirdParty/pugixml/pugixml.cpp:173–187  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

171
172 typedef xml_memory_management_function_storage<int> xml_memory;
173PUGI__NS_END
174
175// String utilities
176PUGI__NS_BEGIN
177 // Get string length
178 PUGI__FN size_t strlength(const char_t* s)
179 {
180 assert(s);
181
182 #ifdef PUGIXML_WCHAR_MODE
183 return wcslen(s);
184 #else
185 return strlen(s);
186 #endif
187 }
188
189 // Compare two strings
190 PUGI__FN bool strequal(const char_t* src, const char_t* dst)

Callers 9

strcpy_insitu_allowFunction · 0.85
strcpy_insituFunction · 0.85
write_stringMethod · 0.85
node_outputFunction · 0.85
load_stringMethod · 0.85
lengthFunction · 0.85
dataFunction · 0.85
new_xpath_variableFunction · 0.85
setMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected