Query: memcpy
OS: centos
Section: 9
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
MEMCPY(9) Basic C Library Functions MEMCPY(9)NAMEmemcpy - Copy one area of memory to anotherSYNOPSISvoid * memcpy(void * dest, const void * src, size_t count);ARGUMENTSdest Where to copy to src Where to copy from count The size of the area.DESCRIPTIONYou should not use this function to access IO space, use memcpy_toio or memcpy_fromio instead.COPYRIGHTKernel Hackers Manual 3.10 June 2014 MEMCPY(9)