isTokenChar function

bool isTokenChar(
  1. int byte
)

Implementation

bool isTokenChar(int byte) {
  return byte > 31 && byte < 128 && !SEPARATOR_MAP[byte];
}