| 94 | } |
| 95 | |
| 96 | static void field_write(struct hc_slog_field *f, struct hc_stream *out) { |
| 97 | hc_puts(out, f->name); |
| 98 | hc_putc(out, '='); |
| 99 | hc_value_write(&f->value, out); |
| 100 | } |
| 101 | |
| 102 | static void stream_write(struct hc_slog *s, |
| 103 | const size_t n, |
no test coverage detected