Help for this page

Select Code to Download


  1. or download this
    SV* foo(int nr) {
        SV* out = NEWSV(535,nr);
        SvPOK_only(out);
    ...
        SvCUR_set(out,nr);
        return (out);
    }