Given a read frame, advance its cursor by 'n' cells. * * Precondition: NULL != frame. */
| 122 | * Precondition: NULL != frame. |
| 123 | */ |
| 124 | static void forward(frameItem* frame, size_t n) { |
| 125 | frame->offset += n; |
| 126 | } |
| 127 | |
| 128 | /* Given a read frame, move its cursor backwards by 'n' cells. |
| 129 | * |