Enhancements
- Added text.cpp/ucFirst function to capitalize words, so that "pending" can now appear as "Pending" on the info report. This helps task pass many more test cases.
This commit is contained in:
11
src/text.cpp
11
src/text.cpp
@@ -296,6 +296,17 @@ std::string upperCase (const std::string& input)
|
||||
return output;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
std::string ucFirst (const std::string& input)
|
||||
{
|
||||
std::string output = input;
|
||||
|
||||
if (output.length () > 0)
|
||||
output[0] = ::toupper (output[0]);
|
||||
|
||||
return output;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
const char* optionalBlankLine ()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user