1 2 3 4 5 6 7 8 9 10 11 12 13
#include <kms++util/strhelpers.h> #include <algorithm> #include <stdarg.h> using namespace std; string to_lower(const string& str) { string data = str; transform(data.begin(), data.end(), data.begin(), ::tolower); return data; }