Converts symbol to lower case, if it is an ASCII one
| 6701 | |
| 6702 | // Converts symbol to lower case, if it is an ASCII one |
| 6703 | PUGI__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 | |
| 6708 | PUGI__FN xpath_string string_value(const xpath_node& na, xpath_allocator* alloc) |
| 6709 | { |