Espaces de noms
Variantes
Affichages
Actions

memcpy

De cppreference.com
< c‎ | string‎ | byte

 
 
 
Chaînes d'octets à zéro terminal
Fonctions
Original:
Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Manipulation caractère
Original:
Character manipulation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Conversion aux formats numériques
Original:
Conversions to numeric formats
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
La manipulation de chaînes
Original:
String manipulation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
strcpy
strncpy
strcat
strncat
strxfrm
Examen chaîne
Original:
String examination
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Manipulation de la mémoire
Original:
Memory manipulation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
memchr
memcmp
memset
memcpy
memmove
Divers
Original:
Miscellaneous
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
strerror
 
Déclaré dans l'en-tête <string.h>
void* memcpy( void* dest, const void* src, size_t count );

Copie count octets depuis l'objet pointé par src vers l'objet pointé par dest. Si les objets se chevauchent, le comportement est indéfini.

Sommaire

[modifier] Paramètres

dest - pointeur sur l'emplacement mémoire de la copie
src - pointeur sur l'emplacement de la mémoire à copier
count - nombre d'octets à copier

[modifier] Retourne la valeur

dest

[modifier] Exemple

[modifier] Voir aussi

une mémoire tampon se déplace vers un autre
Original:
moves one buffer to another
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction) [edit]