MCPcopy Create free account
hub / github.com/MyGUI/mygui / strlength

Function strlength

Tools/EditorFramework/pugixml.cpp:197–211  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

195
196typedef xml_memory_management_function_storage<int> xml_memory;
197PUGI__NS_END
198
199// String utilities
200PUGI__NS_BEGIN
201// Get string length
202PUGI__FN size_t strlength(const char_t* s)
203{
204 assert(s);
205
206#ifdef PUGIXML_WCHAR_MODE
207 return wcslen(s);
208#else
209 return strlen(s);
210#endif
211}
212
213// Compare two strings
214PUGI__FN bool strequal(const char_t* src, const char_t* dst)

Callers 10

strcpy_insitu_allowFunction · 0.70
strcpy_insituFunction · 0.70
writeMethod · 0.70
loadMethod · 0.70
duplicate_stringFunction · 0.70
appendFunction · 0.70
lengthFunction · 0.70
translateFunction · 0.70
new_xpath_variableFunction · 0.70
setMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected