Given a read frame, advance the cursor by 'n' cells. * * Precondition: '*frame' is a valid read frame for 'n' more cells. */
| 94 | * Precondition: '*frame' is a valid read frame for 'n' more cells. |
| 95 | */ |
| 96 | static inline void forwardBits(frameItem* frame, size_t n) { |
| 97 | frame->offset += n; |
| 98 | } |
| 99 | |
| 100 | /* Given a write frame, advance the cursor by 'n' cells. |
| 101 | * |
no outgoing calls
no test coverage detected