ap_array_cat — concatenate two arrays
void ap_array_cat(array_header *dst, const array_header *src)
Appends the array src
to the array
dst
. The dst
array is allocated
more memory if necessary to accommodate the extra elements. Although
this operation only makes sense if the two arrays have the same
element size, there is no check for this.