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