stMemCpy Function
Declaration:
PVOID stMemCpy(
  PVOID dest,
  const PVOID src,
  SIZE n
);
Parameters:
dest

Address of the destination buffer.

src

Address of the source buffer.

n

Number of bytes to copy.

Return value:

Address of the destination buffer, containing the copied data.

Description:

This function copies n bytes from the source to the destination.

If functions for basic memory operations are inactive in the alternative C library (by setting ST_USE_MEMORY_CLIB to 1), a macro named stMemCpy will be created that calls the memcpy function from the standard C library.

Version:1.0
Header file:ST_CLIB.h (include ST_API.h)
See also: PVOID, SIZE, ST_USE_MEMORY_CLIB
SpaceShadow documentation