COPY

Description

Copies a number of characters from one place to another

Syntax

If Metaware is being used without UNIX it is defined as:

COPY(to,from,length) _move(from,to,length)

(where _move is an Metaware intrinsic function.) Otherwise it is defined as:

COPY(to,from,length) memcpy(to,from,length) or memmove(target,from,length), depending on which we think is faster.

Remarks

This is used to build other macros.