Given a read frame, return the value of the cell at the cursor and advance the cursor by one cell. * * Precondition: '*frame' is a valid read frame for 1 more cell. */
| 61 | * Precondition: '*frame' is a valid read frame for 1 more cell. |
| 62 | */ |
| 63 | static inline bool readBit(frameItem* frame) { |
| 64 | bool result = peekBit(frame); |
| 65 | frame->offset++; |
| 66 | return result; |
| 67 | } |
| 68 | |
| 69 | /* Given a write frame, set its cursor's cell to 'bit' and advance the cursor by one cell. |
| 70 | * Cells in front of the cursor's final position may be overwritten. |
no test coverage detected