Provided by: manpages-es_1.55-10_all 

NOMBRE
memcpy - copiar area de memoria
SYNOPSIS
#include <string.h> void *memcpy(void *dest, const void *src, size_t n);
DESCRIPCIÓN
La funcion memcpy() copia n bytes desde el area de memoria src al area dest. Dichas areas de memoria no deben tener ningun punto de interseccion; en tal caso utilizar la funcion memmove(3) en lugar de memcpy().
VALOR DEVUELTO
La funcion memcpy() devuelve un puntero a dest.
CONFORME A
SVID 3, BSD 4.3, ISO 9899
VEA TAMBIÉN
bcopy(3), memccpy(3), memmove(3), strcpy(3), strncpy(3)