Given a read frame, move its cursor backwards by 'n' cells. * * Precondition: n <= frame->offset */
| 130 | * Precondition: n <= frame->offset |
| 131 | */ |
| 132 | static void backward(frameItem* frame, size_t n) { |
| 133 | simplicity_debug_assert(n <= frame->offset); |
| 134 | frame->offset -= n; |
| 135 | } |
| 136 | |
| 137 | /* Given a write frame, advance its cursor by 'n' cells. |
| 138 | * |