Some encode/decode practice.

This commit is contained in:
James Grogan 2022-11-21 17:45:12 +00:00
parent 8a41337e2d
commit ff962a6b16
29 changed files with 727 additions and 305 deletions

View file

@ -20,6 +20,11 @@ bool StringUtils::IsSpace(char c)
return std::isspace(c, loc);
}
bool StringUtils::IsAlphabetical(char c)
{
return std::isalpha(c);
}
std::vector<std::string> StringUtils::toLines(const std::string& input)
{
auto result = std::vector<std::string>{};