Linux |
CentOS 4.8 |
|
bcopy(3) |
bcopy − Copier un bloc d’octets. |
#include <string.h> void bcopy (const void *src, void *dest, size_t n); |
La fonction bcopy() copie les n premiers octets du bloc source src dans le bloc destination dest. Si n vaut zéro, aucun octet n’est copié. |
La fonction bcopy() ne renvoie aucune valeur. |
BSD 4.3. Cette fonction est déconseillée, utilisez plutôt memcpy. |
memccpy(3), memcpy(3), memmove(3), strcpy(3), strncpy(3) |
Christophe Blaess, 1997. |
bcopy(3) |