IMPORT_C TAny *memcpy(TAny *aTrg, const TAny *aSrc, unsigned int aLength);
Description
A Nanokernel utility function that copies bytes in memory.
Parameters
TAny *aTrg |
The target address. |
const TAny *aSrc |
The source address. |
unsigned int aLength |
The number of bytes to be moved. |
|
Return value
TAny * |
The target address. |
|