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