Linux

CentOS 4.8

bcopy(3)


BCOPY

NOM

bcopy − Copier un bloc d’octets.

SYNOPSIS

#include <string.h>

void bcopy (const void *src, void *dest, size_t n);

DESCRIPTION

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é.

VALEUR RENVOYÃE

La fonction bcopy() ne renvoie aucune valeur.

CONFORMITÃ

BSD 4.3. Cette fonction est déconseillée, utilisez plutôt memcpy.

VOIR AUSSI

memccpy(3), memcpy(3), memmove(3), strcpy(3), strncpy(3)

TRADUCTION

Christophe Blaess, 1997.


bcopy(3)