Convert a string to lowercase. \return Converted string. **/
| 170 | \return Converted string. |
| 171 | **/ |
| 172 | inline std::string tolower(const std::string& s) |
| 173 | { |
| 174 | std::string out; |
| 175 | for (size_t i = 0; i < s.size(); ++i) |
| 176 | out += (char)std::tolower(s[i]); |
| 177 | return out; |
| 178 | } |
| 179 | |
| 180 | /** |
| 181 | Convert a string to uppercase. |