isWhitespace function

bool isWhitespace(
  1. int c
)

Implementation

bool isWhitespace(int c) => c == 0x9 || c == 0x20;