| 447 | return &val->u.obj; |
| 448 | } |
| 449 | int cson_value_fetch_object(cson_value *val, cson_object **obj) |
| 450 | { |
| 451 | *obj = cson_value_get_object(val); |
| 452 | return 0; |
| 453 | } |
| 454 | cson_value *cson_object_value(cson_object *s) |
| 455 | { |
| 456 | return s->value; |
no test coverage detected