| 71 | } |
| 72 | |
| 73 | std::string to_lower(std::string text) |
| 74 | { |
| 75 | // Convert the string to lowercase |
| 76 | std::transform(text.begin(), text.end(), text.begin(), |
| 77 | [](unsigned char c) { return std::tolower(c); }); |
| 78 | |
| 79 | return text; |
| 80 | } |
| 81 | |
| 82 | std::string strip(std::string& line) |
| 83 | { |
no test coverage detected