12345678910111213141516171819202122232425262728293031323334353637383940 |
- .. _func_system_memcopy:
- =======
- MemCopy
- =======
- MemCopy - Copy block of memory
- Description
- ===========
- .. code-block:: blitzmax
- MemCopy( dst:Byte Ptr, src:Byte Ptr, size:Size_t )
- Copies a non-overlapping block of ``size`` bytes of memory from the location pointed to by ``src`` to the block of memory
- pointed to by ``dst``.
- Parameters
- ==========
- * ``dst`` - A pointer to the destination memory where the content is to be copied.
- * ``src`` - A pointer to the source data to be copied.
- * ``size`` - The number of bytes to copy.
- Return Values
- =============
- Nothing.
- Examples
- ========
- See Also
- ========
- :ref:`func_system_memalloc`, :ref:`func_system_memextend`, :ref:`func_system_memmove`, :ref:`func_system_memfree`, :ref:`func_system_memclear`
|