23.02.2016, 23:49
Today I learned that a pointer can be realized by doing
The funny thing is that pawn accepts empty arrays
And if you declare an array without value or with arrays with different sizes the second bounds check isn't present
As example a function to print out the code segment
PHP код:
new pointer[][] = {{}};
And if you declare an array without value or with arrays with different sizes the second bounds check isn't present
As example a function to print out the code segment
PHP код:
stock printCOD() {
new size;
new address;
new pointer[][] = {{}};
// Gets the start and the size of the COD segment
#emit lctrl 0
#emit move.alt
#emit lctrl 1
#emit sub.alt
#emit stor.s.pri address
#emit neg
#emit shr.c.pri 2
#emit stor.s.pri size
SetPointer(pointer, address);
for(new i; i < size; ++i) {
printf("%d", pointer[0][i]);
}
}