2
0
Эх сурвалжийг харах

Filled out with more helpful content.

woollybah 8 жил өмнө
parent
commit
e2a2c1b871

+ 10 - 3
reference/functions/system/func_system_memcopy.rst

@@ -4,20 +4,26 @@
 MemCopy
 MemCopy
 =======
 =======
 
 
-MemCopy - 
+MemCopy - Copy block of memory
 
 
 Description
 Description
 ===========
 ===========
 
 
 .. code-block:: blitzmax
 .. 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
 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
 Return Values
 =============
 =============
 
 
@@ -29,5 +35,6 @@ Examples
 See Also
 See Also
 ========
 ========
 
 
+:ref:`func_system_memalloc`, :ref:`func_system_memextend`, :ref:`func_system_memmove`, :ref:`func_system_memfree`, :ref:`func_system_memclear`