Copy the contents of one memory location to another.
The copy is correct even if the memory areas overlap. For this reason, it is recommended to use this function in place of PCRMem_Copy.
- Parameters
-
dest | Destination memory location. May not be NULL unless n == 0. |
src | Source memory location. May not be NULL unless n == 0. |
n | Number of bytes to copy from src to dest. Must be >0 or nothing happens. |
- Returns
- None.
- See Also
- PCRMem_Copy