| 360 | // ---------------------------------------------------------------------------------------- |
| 361 | |
| 362 | std::string http_client::strtoupper(const std::string& in) const |
| 363 | { |
| 364 | std::string retVal = in; |
| 365 | |
| 366 | for (std::string::iterator ii = retVal.begin(); ii != retVal.end(); ++ii) |
| 367 | { |
| 368 | *ii = ::toupper(*ii); |
| 369 | } |
| 370 | |
| 371 | return retVal; |
| 372 | } |
| 373 | |
| 374 | // ---------------------------------------------------------------------------------------- |
| 375 |