isprint method

bool isprint(
  1. String c
)

Checks if the character is printable (including space).

Implementation

bool isprint(String c) {
  int code = _getCode(c);
  return code >= 32 && code <= 126;
}