Help for this page

Select Code to Download


  1. or download this
    use Inline 'C' => <<CEND;
    SV* x (HV* self) {
    ...
      return (x_ref ? *x_ref : &PL_sv_undef);
    }
    CEND
    
  2. or download this
    Attempt to free temp prematurely: SV 0x816f1c4.
    Attempt to free unreferenced scalar: SV 0x816f1c4.
    
  3. or download this
    use Inline 'C' => <<CEND;
    void x (HV* self) {
      SV** x_ref = hv_fetch( self, "x", 1, 0 );
    ...
      Inline_Stack_Done;
    }
    CEND