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

Function _verifyUTF8

MyGUIEngine/include/MyGUI_UString.h:950–953  ·  view source on GitHub ↗

verifies a UTF-8 stream, returning the total number of Unicode characters found

Source from the content-addressed store, hash-verified

948 static size_type _verifyUTF8(const unsigned char* c_str);
949 //! verifies a UTF-8 stream, returning the total number of Unicode characters found
950 static size_type _verifyUTF8(std::string_view str)
951 {
952 return _verifyUTF8(str.data(), str.size());
953 }
954 //! verifies a UTF-8 stream, returning the total number of Unicode characters found
955 static size_type _verifyUTF8(const char* c_str, size_type num);
956 //@}

Callers 2

MyGUI_UString.cppFile · 0.85
_verifyUTF8Method · 0.85

Calls 2

dataMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected