memcpy
Default mainpageat91libutilitymemcpy
Description Source Call Graph
memcpy
Copies data from a source buffer into a destination buffer.
 
Syntax / parameters
void * memcpy (void *pDestination, const void *pSource, size_t num)

Name Type Default Description
pDestination void *
  Destination buffer.
pSource const void *
  Source buffer.
num size_t
  Number of bytes to copy.
 
Return value void *
   
Description
Copies data from a source buffer into a destination buffer.
The two buffers must NOT overlap. Returns the destination buffer.
 
Source
The documentation for this Member was generated from the following file:
  • string.c