MEMCPY

Section: Manual del Programador de Linux (3)
Updated: 10 Abril 1993
Index Return to Main Contents


 

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)


 

Index

NOMBRE
SYNOPSIS
DESCRIPCIÓN
VALOR DEVUELTO
CONFORME A
VEA TAMBIÉN

This document was created by man2html, using the manual pages.
Time: 06:16:22 GMT, January 22, 2005