ADVANCED: memcpy (Function) |
Top Previous Next |
memcpy will copy the contents of one memory area to another memory area.
Please note that memcpy does not support the copying of overlapped source and destination.
Input: dst : PTR Pointer to the destination memory.
src : PTR Pointer to the source memory.
len : INT Number of bytes to be copied.
Returns: None
Declaration: FUNCTION memcpy;
Example: INCLUDE rtcu.inc |