| 73 | }; |
| 74 | |
| 75 | static void string_copy(struct hc_value *dst, struct hc_value *src) { |
| 76 | dst->as_string = strdup(src->as_string); |
| 77 | } |
| 78 | |
| 79 | static void string_deinit(struct hc_value *v) { |
| 80 | free(v->as_string); |
nothing calls this directly
no outgoing calls
no test coverage detected