Rechercher une page de manuel
memcpy
Langue: es
Version: 10 Abril 1993 (openSuse - 09/10/07)
Section: 3 (Bibliothèques de fonctions)
NOMBRE
memcpy - copiar area de memoriaSYNOPSIS
#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 9899VEA TAMBIÉN
bcopy(3), memccpy(3), memmove(3), strcpy(3), strncpy(3)Contenus ©2006-2024 Benjamin Poulain
Design ©2006-2024 Maxime Vantorre