| 11 | } |
| 12 | |
| 13 | void hc_value_deinit(struct hc_value *v) { |
| 14 | if (v->type->deinit) { |
| 15 | v->type->deinit(v); |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | struct hc_value *hc_value_copy(struct hc_value *dst, struct hc_value *src) { |
| 20 | const struct hc_type *t = src->type; |
no outgoing calls