История изменений
Исправление
bhfq,
(текущая версия)
:
#include <algorithm>
#include <string>
std::string source = "GNU Linux РуСсКиЙ ТеКсТ";
std::transform(source.begin(), source.end(), source.begin(), ::tolower);
Или boost http://www.boost.org/doc/libs/1_51_0/libs/locale/doc/html/conversions.html
Исходная версия
bhfq,
:
#include <algorithm>
#include <string>
std::string source = "GNU Linux РуСсКиЙ ТеКсТ";
std::transform(source.begin(), source.end(), source.begin(), ::tolower);