- or download this
my @vals=(\@someArray,\%someHash);
my $res=store(\@vals,"$path/$name");
- or download this
my @someArray = ();
my %someHash = ();
...
%someHash = %$tmp2;
}
}
- or download this
WRITE(header, length);
- or download this
WRITE( (unsigned char*) header, length);
- or download this
#define WRITE(x,y) \
STMT_START { \
...
else if (PerlIO_write(cxt->fio, x, y) != y) \
return -1; \
} STMT_END