| 126 | }; |
| 127 | |
| 128 | void rioInitWithBuffer(rio *r, sds s) { |
| 129 | *r = rioBufferIO; |
| 130 | r->io.buffer.ptr = s; |
| 131 | r->io.buffer.pos = 0; |
| 132 | } |
| 133 | |
| 134 | void rioInitWithConstBuffer(rio *r, const void *buf, size_t cb) |
| 135 | { |
no outgoing calls
no test coverage detected