فهرست منبع

Filled out with more helpful content.

woollybah 8 سال پیش
والد
کامیت
e2a2c1b871
1فایلهای تغییر یافته به همراه10 افزوده شده و 3 حذف شده
  1. 10 3
      reference/functions/system/func_system_memcopy.rst

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

@@ -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`