package char // ByteIsChar returns whether the byte is a 'CHAR', as defined by IETF RFC-2616. // // CHAR = func ByteIsChar(value byte) bool { return value <= 127 }