| 55 | struct hc_stream *hc_stdout(); |
| 56 | |
| 57 | struct hc_memory_stream { |
| 58 | struct hc_stream stream; |
| 59 | struct hc_vector data; |
| 60 | size_t rpos; |
| 61 | }; |
| 62 | |
| 63 | extern struct hc_stream hc_memory_stream; |
| 64 |
nothing calls this directly
no outgoing calls
no test coverage detected