skip method

void skip(
  1. int distance
)

Skip forward distance of bytes

Implementation

void skip(int distance) {
  ip += distance;
}