ptr()
public
Returns a new Fiddle::Pointer instance that is a
dereferenced pointer for this pointer.
Analogous to the star operator in C.
static VALUE
rb_fiddle_ptr_ptr(VALUE self)
{
struct ptr_data *data;
TypedData_Get_Struct(self, struct ptr_data, &fiddle_ptr_data_type, data);
return rb_fiddle_ptr_new(*((void**)(data->ptr)),0,0);
}