| 99 | }; |
| 100 | |
| 101 | void rioInitWithBuffer(rio *r, sds s) { |
| 102 | *r = rioBufferIO; |
| 103 | r->io.buffer.ptr = s; |
| 104 | r->io.buffer.pos = 0; |
| 105 | } |
| 106 | |
| 107 | /* --------------------- Stdio file pointer implementation ------------------- */ |
| 108 |
no outgoing calls
no test coverage detected