class CAFake

Public Instance Methods

initialize_copy(p1) click to toggle source
static VALUE
rb_ca_fake_initialize_copy (VALUE self, VALUE other)
{
  CAFake *ca, *cs;

  Data_Get_Struct(self,  CAFake, ca);
  Data_Get_Struct(other, CAFake, cs);

  ca_fake_setup(ca, cs->parent, cs->data_type, cs->bytes);

  return self;
}