Example #1
0
	GString ToLower(GString& str)
	{
		transform(str.begin(), str.end(), str.begin(), ::tolower);
		return str;
	}