| 357 | /* Return a VALUE for S. */ |
| 358 | |
| 359 | static VALUE * |
| 360 | str_value (char const *s) |
| 361 | { |
| 362 | VALUE *v = xmalloc (sizeof *v); |
| 363 | v->type = string; |
| 364 | v->u.s = xstrdup (s); |
| 365 | return v; |
| 366 | } |
| 367 | |
| 368 | /* Free VALUE V, including structure components. */ |
| 369 |