/*
* call-seq:
* render(charset_from=nil, charset_to=nil)
*
* charset_from: the name of the charset to convert from (optional).
*
* charset_to: the name of the charset to convert to (optional).
*
* Returns: a display friendly description of the record.
*/
static VALUE
rbz_record_render (int argc, VALUE *argv, VALUE self)
{
return CSTR2RVAL (ZOOM_record_get (rbz_record_get (self),
rbz_record_type ("render", argc, argv),
NULL));
}