Help for this page

Select Code to Download


  1. or download this
    #define Inline_Stack_Push(x)    XPUSHs(x)
    
  2. or download this
    #define Inline_Stack_Return(x)    XSRETURN(x)
    
  3. or download this
    void overload_add_eq(SV * obj, SV * addon, SV * third) {
         dXSARGS;
    ...
         c->value += SvIV(addon);
         XPUSHs(obj);
    }
    
  4. or download this
    void overload_add_eq(SV * obj, SV * addon, SV * third) {
         dXSARGS;
    ...
         XPUSHs(obj);
         XSRETURN(1);
    }