Les MANs Linux en français...
MEMCPY
Section: Manuel du programmeur Linux (3)Updated: 4 Novembre 1996
Index Retour au Menu Principal
NOM
memcpy - Copier une zone memoire.SYNOPSIS
#include <string.h> void *memcpy (void *dest, const void *src, size_t n);
DESCRIPTION
La fonction memcpy() copie n octets depuis la zone mémoire src vers la zone mémoire dest. Les deux zones ne doivent pas se chevaucher. Si c'est le cas, utilisez plutôt memmove(3).VALEUR RENVOYÉE
La fonction memcpy() renvoie un pointeur sur dest.CONFORMITÉ
SVID 3, BSD 4.3, ISO 9899VOIR AUSSI
bcopy(3), memccpy(3), memmove(3), strcpy(3), strncpy(3)TRADUCTION
Christophe Blaess, 1997.
Index
Time: 22:30:04 GMT, December 19, 2004