seekWrite method

void seekWrite(
  1. int position
)

Moves the write marker to the given position

Implementation

void seekWrite(int position) {
  _writePos = position;
}