| 72 | } |
| 73 | |
| 74 | void hc_stream_deinit(struct hc_stream *s) { |
| 75 | assert(s->deinit); |
| 76 | s->deinit(s); |
| 77 | } |
| 78 | |
| 79 | size_t file_read(struct hc_stream *s, uint8_t *data, const size_t n) { |
| 80 | struct hc_file_stream *fs = hc_baseof(s, struct hc_file_stream, stream); |
no outgoing calls