isTextChar function

bool isTextChar(
  1. int c
)

Implementation

bool isTextChar(int c) => !(c == 0xa || c == 0xd || c == 0x2c);