|
@@ -4,20 +4,26 @@
|
|
|
MemCopy
|
|
|
=======
|
|
|
|
|
|
-MemCopy -
|
|
|
+MemCopy - Copy block of memory
|
|
|
|
|
|
Description
|
|
|
===========
|
|
|
|
|
|
.. code-block:: blitzmax
|
|
|
|
|
|
- MemCopy( dst:Byte Ptr,src:Byte Ptr,size )
|
|
|
+ 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``.
|
|
|
|
|
|
-Copy a non-overlapping block of memory
|
|
|
|
|
|
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
|
|
|
=============
|
|
|
|
|
@@ -29,5 +35,6 @@ Examples
|
|
|
See Also
|
|
|
========
|
|
|
|
|
|
+:ref:`func_system_memalloc`, :ref:`func_system_memextend`, :ref:`func_system_memmove`, :ref:`func_system_memfree`, :ref:`func_system_memclear`
|
|
|
|
|
|
|