| 13 | namespace { |
| 14 | |
| 15 | std::string lowercase(std::string value) { |
| 16 | std::transform(value.begin(), value.end(), value.begin(), |
| 17 | [](unsigned char ch) { return static_cast<char>(std::tolower(ch)); }); |
| 18 | return value; |
| 19 | } |
| 20 | |
| 21 | std::string normalizeAtomSymbol(std::string value) { |
| 22 | value = lowercase(std::move(value)); |
no outgoing calls
no test coverage detected