memcpy
De cppreference.com
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
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
This section is incomplete Reason: no example |
[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) | |
C++ documentation for memcpy
|