| 150 | } |
| 151 | |
| 152 | void memory_deinit(struct hc_stream *s) { |
| 153 | struct hc_memory_stream *ms = hc_baseof(s, struct hc_memory_stream, stream); |
| 154 | hc_vector_deinit(&ms->data); |
| 155 | } |
| 156 | |
| 157 | struct hc_memory_stream *hc_memory_stream_init(struct hc_memory_stream *s, |
| 158 | struct hc_malloc *malloc) { |
nothing calls this directly
no test coverage detected