Given a write frame, advance the cursor by 'n' cells. * * Precondition: '*frame' is a valid write frame for 'n' more cells. */
| 102 | * Precondition: '*frame' is a valid write frame for 'n' more cells. |
| 103 | */ |
| 104 | static inline void skipBits(frameItem* frame, size_t n) { |
| 105 | simplicity_debug_assert(n <= frame->offset); |
| 106 | frame->offset -= n; |
| 107 | } |
| 108 | |
| 109 | /* Given a read frame, the 'readN' function returns the value of the 'N' cells after the cursor and |
| 110 | * advances the frame's cursor by 'N'. |
no outgoing calls
no test coverage detected