Chapter 4 Details of Crypto-C Functions 343
T_memcpy
T_memcpy
Description
T_memcpy copies the first
len
bytes of
input
to
output
. The value of
len
can be zero, in
which case
output
and
input
are undefined. The blocks do not overlap.
Return value
There is no return value.
void T_memcpy(
POINTER output, /* output block */
POINTER input, /* input block */
unsigned int len /* length of blocks */
);