skip method

int skip(
  1. int size
)

Implementation

int skip(int size) {
  pos += size;
  return size;
}