readUint8 method

int readUint8 ()

Implementation

int readUint8() {
  int v = buf.readUint8(ofst);
  ofst += 1;
  return v;
}