- or download this
#!/usr/bin/env perl
use ExtUtils::testlib;
...
ArrayTest::print_array_int( "revendar",8 );
print "------------------------------------------------\n";
ArrayTest::print_array_int( @$test ,8 );
- or download this
#include <stdio.h>
#include <string.h>
#include <math.h>
...
printf("Element array[%d] = %d\n",i,array[i]);
}
}
- or download this
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
...
print_array_int(array,l)
char * array
int l
- or download this
package myClibs;
our $VERSION = '0.01';
require XSLoader;
XSLoader::load('myClibs', $VERSION);
1;