putChar method

void putChar(
  1. int c
)

Implementation

void putChar(int c) {
  putByte(_parseByte(c));
  putByte(_parseByte(c >> 8));
}