/*
 * call-seq: 
 *      syntax(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: the symbolic transfer syntax name of the record.
 */
static VALUE
rbz_record_syntax (int argc, VALUE *argv, VALUE self)
{
    return CSTR2RVAL (ZOOM_record_get (rbz_record_get (self),
                                       rbz_record_type ("syntax", argc, argv),
                                       NULL));    
}