memcpy() function Code

Newbie Member
19Sep2006,16:50   #1
alekya.ch's Avatar
Hi All,
This is alekya. I am working as software Engineer. I want the code for memcpy() function. I know the prototype and purpose but I want user code of memcpy function().

int memcpy(void *src, void *des, int size)
{

}
Go4Expert Founder
19Sep2006,19:31   #2
shabbir's Avatar
void * memcpy ( void * dest, const void * src, size_t num );

Copy bytes to buffer from buffer.
Copies num bytes from src buffer to memory location pointed by dest.

Parameters.

dest
Destination buffer where data is copied.
src
Source buffer to copy from.
num
Number of bytes to copy.
e.g.
memcpy((void*)szData, pBuffer, iSizeBufNeeded);
szData and pBuffer are pre allocated buffer where the memory copy operation is performed.