| 33 | namespace |
| 34 | { |
| 35 | static char asciiLower(char c) |
| 36 | { |
| 37 | if (c >= 'A' and c <= 'Z') |
| 38 | { |
| 39 | return static_cast<char>(c - 'A' + 'a'); |
| 40 | } |
| 41 | return c; |
| 42 | } |
| 43 | |
| 44 | static bool asciiEqualsIgnoreCase(SC::StringSpan left, SC::StringSpan right) |
| 45 | { |
no outgoing calls
no test coverage detected