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

Function tolower_ascii

Tools/EditorFramework/pugixml.cpp:6703–6706  ·  view source on GitHub ↗

Converts symbol to lower case, if it is an ASCII one

Source from the content-addressed store, hash-verified

6701
6702// Converts symbol to lower case, if it is an ASCII one
6703PUGI__FN char_t tolower_ascii(char_t ch)
6704{
6705 return static_cast<unsigned int>(ch - 'A') < 26 ? static_cast<char_t>(ch | ' ') : ch;
6706}
6707
6708PUGI__FN xpath_string string_value(const xpath_node& na, xpath_allocator* alloc)
6709{

Callers 1

eval_booleanMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected