- or download this
#include "myfunction.h"
double do_nothing(double *para)
{
return para[0];
}
- or download this
double do_nothing(double *)
- or download this
#include "myfunction.h" (and the rest of the XSUB header files)
...
double do_nothing(x)
double * x
- or download this
double * T_SV
- or download this
my @array = (1.1,1.2);
is(&myfunction::do_nothing(\@array),1.1);