Memcopy
Last Modified: May 29, 2005 21:05PM
|
|
| (Any)
|
Description
MEMCOPY (POINTER DESTINY, POINTER ORIGIN, INT BYTES)
PARAMETERS:
destiny: Pointer to the zone of destiny memory
origin: Pointer to the zone of origin memory
bytes: Size in bytes of the amount of memory to copy.
DESCRIPTION:
This function copies bytes of memory from the position origin to the position destiny. Its greatest use resides in the management of memory blocks, although also it can be useful to copy great pieces of memory.
This function must not be used to access memory (Memset or Memcopy) to modify memory zones that contains variable type strings (for example, making copies of structures that contain strings) since it can cause losses of memory and even hang, since Fenix could discard the memory used by a string when it has been used in another place due to a memory copy.
|
User Contributed Notes Memcopy |
|
| There are no user contributed notes for this page. |
| Last updated: Mon, 30 May 2005 - 10:33:03 |
|
|