isWhiteSpace function

bool isWhiteSpace(
  1. int c
)

Implementation

bool isWhiteSpace(int c) {
  return c <= 32 || c == 0x2028;
}