Hi,
I'm trying currently to do something like this:
Code:
new src[] = { 1, 1, 0, 1, 2, 0, 0, 1 };
new dst[32];
// [...]
copy(lame, 8, dst);
However, the above code does not work as I want, because since copy() is a string function, itll stop at the third character in src[], taking it as the terminating char ('\0').
Any AMXX equivalent of memcpy()?
Thanks!
Misery