| 232 | } |
| 233 | |
| 234 | static struct hc_value *id_value(const struct hc_form *_f, |
| 235 | struct hc_dsl *dsl) { |
| 236 | struct hc_id *f = hc_baseof(_f, struct hc_id, form); |
| 237 | return hc_dsl_getenv(dsl, f->name); |
| 238 | } |
| 239 | |
| 240 | static void id_free(struct hc_form *_f) { |
| 241 | struct hc_id *f = hc_baseof(_f, struct hc_id, form); |
nothing calls this directly
no test coverage detected