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