Help for this page

Select Code to Download


  1. or download this
     
    my @test;
    my $reftest = \@test;
    add_nir(1,4,\$reftest);
    
  2. or download this
     int add_nir(int x, int y, AV** perlList )
       {
    ...
    ...
    
    }
    
  3. or download this
     int add_nir(int x, int y, AV* perlList )
    
  4. or download this
    newAV()
    
  5. or download this
     my @test;
      add_nir(1,4,\@test);
    ...
          SV* perlItem=newSViv(2);
            av_push(perlList, perlItem);
    ...}
    
  6. or download this
    Can't locate auto/PM_wed/add_nir.al in @INC .....