Ejemplo n.º 1
0
// ReverseString:
//   Simple example that takes a string as input and returns a string
//   with its characters reversed.
std::wstring ReverseString(const std::wstring &s)
{
	return std::wstring(s.crbegin(), s.crend());
}