Removes data from array.
array_remove(hnd, pos, len);
hnd = array_new(); array_setdata(hnd, 0, 0x01, 0x02, 0x03, 0x04, 0x05); result = array_printdata(hnd); array_remove(hnd, 2, 2); result = array_printdata(hnd); array_delete(hnd);
result:
5; 0x01, 0x02, 0x03, 0x04, 0x05 3; 0x01, 0x02, 0x05