| 85 | } |
| 86 | |
| 87 | static void string_write(const struct hc_value *v, struct hc_stream *out) { |
| 88 | hc_putc(out, '"'); |
| 89 | string_print(v, out); |
| 90 | hc_putc(out, '"'); |
| 91 | } |
| 92 | |
| 93 | const struct hc_type HC_STRING = { |
| 94 | .name = "String", |
nothing calls this directly
no test coverage detected