![]() -> Click here to learn how to get live help <- |
MEMCPYIndexNAMEmemcpy - copy memory areaSYNOPSIS#include <string.h> void *memcpy(void *dest, const void *src, size_t n); DESCRIPTIONThe fBmemcpy()fP function copies fInfP bytes from memory area fIsrcfP to memory area fIdestfP. The memory areas may not overlap. Use fBmemmovefP(3) if the memory areas do overlap.RETURN VALUEThe fBmemcpy()fP function returns a pointer to fIdestfP.CONFORMING TOSVID 3, BSD 4.3, ISO 9899SEE ALSObcopy(3), memccpy(3), memmove(3), mempcpy(3), strcpy(3), strncpy(3), wmemcpy(3)
Index |