PVOID stMemCpy( PVOID dest, const PVOID src, SIZE n );
Address of the destination buffer.
Address of the source buffer.
Number of bytes to copy.
Address of the destination buffer, containing the copied data.
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 |