/* * call-seq: * str3 * * Extra string information */ static VALUE str3(VALUE self) { xmlErrorPtr error; Data_Get_Struct(self, xmlError, error); if(error->str3) return NOKOGIRI_STR_NEW2(error->str3, "UTF-8"); return Qnil; }