| 77 | } |
| 78 | |
| 79 | static void string_deinit(struct hc_value *v) { |
| 80 | free(v->as_string); |
| 81 | } |
| 82 | |
| 83 | static void string_print(const struct hc_value *v, struct hc_stream *out) { |
| 84 | hc_puts(out, v->as_string); |
nothing calls this directly
no outgoing calls
no test coverage detected