| 35 | } |
| 36 | static bool characterIsNewLine(char c) { return c == '\n' || c == '\r'; } |
| 37 | static bool CharacterIsDigit(char c) { return c >= '0' && c <= '9'; } |
| 38 | |
| 39 | static std::string ltrim(const std::string& input) { |
| 40 | auto s = input; |
no outgoing calls
no test coverage detected