Share Pastebin
Guest
Public paste!

vince

By: a guest | Feb 9th, 2010 | Syntax: None | Size: 0.12 KB | Hits: 14 | Expires: Never
Copy text to clipboard
  1. string sToLower(string sInput)
  2. {
  3.         transform (sInput.begin(), sInput.end(),sInput.begin(), tolower );
  4.         return sInput;
  5. }