Whether a character should be skipped as whitespace / separator / end-of-file.
| 97 | // Whether a character should be skipped as whitespace / separator / |
| 98 | // end-of-file. |
| 99 | bool IsSpace(char c) { return isspace(c) || c == ',' || c == '\0'; } |
| 100 | |
| 101 | bool IsHexStream(const std::vector<char>& stream) { |
| 102 | for (char c : stream) { |
no outgoing calls
no test coverage detected