getChar static method

void getChar(
  1. List<int> c_lc,
  2. InputBuffer input
)

Implementation

static void getChar(List<int> c_lc, InputBuffer input) {
  c_lc[0] = ((c_lc[0] << 8) | input.readByte()) & MASK_64;
  c_lc[1] = (c_lc[1] + 8) & MASK_32;
}