| 135 | } |
| 136 | |
| 137 | static inline void write8s(frameItem* frame, const unsigned char* x, size_t n) { |
| 138 | for(; n; --n) simplicity_write8(frame, *(x++)); |
| 139 | } |
| 140 | |
| 141 | static inline void read32s(uint32_t* x, size_t n, frameItem* frame) { |
| 142 | for(; n; --n) *(x++) = (uint32_t)simplicity_read32(frame); |
no outgoing calls
no test coverage detected