xref: /aosp_15_r20/external/libkmsxx/kms++util/src/strhelpers.cpp (revision f0687c8a10b3e371dbe09214db6664e37c283cca)
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