Add new "fgl_copy" call - copies from one variable to another using byte copies (so copying a large array of records is much faster).
Eg. define a array[20] of record c char(20) end record
define b array[20] of record c char(20) end record ... for d=1 to 20 let a[d].c=d end for
CALL fgl_copy(a,b)
will copy the array "a" into array "b"
Sizes of the arrays *must match*
Authored by: mikeaubury 2011-05-17
Parent: [r12053]
Child: [r12055]