| 131 | void simplicity_write64(frameItem* frame, uint_fast64_t x); |
| 132 | |
| 133 | static inline void read8s(unsigned char* x, size_t n, frameItem* frame) { |
| 134 | for(; n; --n) *(x++) = (unsigned char)simplicity_read8(frame); |
| 135 | } |
| 136 | |
| 137 | static inline void write8s(frameItem* frame, const unsigned char* x, size_t n) { |
| 138 | for(; n; --n) simplicity_write8(frame, *(x++)); |
no outgoing calls
no test coverage detected