Help for this page

Select Code to Download


  1. or download this
    SV* test( SV *a, SV *b ) {
    
  2. or download this
    SV* test( SV *a, SV *b ) {
        SV *c = newSVsv(a);
        sv_catsv(c,b);
        return c;
    }