/* * call-seq: * explanation.to_html -> string * * Returns an html represention of the explantion in readable format. */ static VALUE frt_expl_to_html(VALUE self) { GET_EXPL(); char *str = expl_to_html(expl); VALUE rstr = rb_str_new2(str); free(str); return rstr; }