| 464 | return cson__set(obj->value, cson_key->buf, v); |
| 465 | } |
| 466 | int cson_object_unset(cson_object *obj, char const *key) |
| 467 | { |
| 468 | return cson_object_set(obj, key, NULL); |
| 469 | } |
| 470 | cson_value *cson_object_get(cson_object *obj, char const *key) |
| 471 | { |
| 472 | cson__render(obj->value); |