| 89 | } |
| 90 | |
| 91 | void stream_deinit(struct hc_slog *s) { |
| 92 | struct hc_slog_stream *ss = hc_baseof(s, struct hc_slog_stream, slog); |
| 93 | if (ss->opts.close_out) { hc_stream_deinit(ss->out); } |
| 94 | } |
| 95 | |
| 96 | static void field_write(struct hc_slog_field *f, struct hc_stream *out) { |
| 97 | hc_puts(out, f->name); |
nothing calls this directly
no test coverage detected