13 lines
221 B
C++
13 lines
221 B
C++
#include <boost/algorithm/string.hpp>
|
|
#include <string>
|
|
#include <iostream>
|
|
|
|
using namespace boost::algorithm;
|
|
|
|
int main()
|
|
{
|
|
std::string s = "Boost C++ Libraries";
|
|
std::cout << to_upper_copy(s) << '\n';
|
|
|
|
return 0;
|
|
} |