NAME stcopy - copy string at from(i) to to(j); increment j SYNOPSIS call stcopy(from, i, to, j) character from(ARB), to(ARB) integer i integer j # j is incremented DESCRIPTION Copies the (sub)string of 'from', starting in location 'i', into array 'to', starting at 'j'. 'j' is incremented to point to the next available position in 'to' (i.e. the EOS marker inserted by the copy). In all other respects, 'stcopy' is similar to 'scopy'. SEE ALSO scopy, concat, addstr, addset DIAGNOSTICS None