| 81 | } |
| 82 | |
| 83 | static void string_print(const struct hc_value *v, struct hc_stream *out) { |
| 84 | hc_puts(out, v->as_string); |
| 85 | } |
| 86 | |
| 87 | static void string_write(const struct hc_value *v, struct hc_stream *out) { |
| 88 | hc_putc(out, '"'); |
no test coverage detected