bstring
Table des matières
Retour à l'index
NOM
bcmp, bcopy, bzero, memccpy, memchr, memcmp, memcpy, memfrob, memmem,
memmove, memset - Opérations sur des chaînes d'octets
BIBLIOTHÈQUE
Bibliothèque C standard (libc, -lc)
SYNOPSIS
#include <string.h>
int bcmp(const void s1[.n], const void s2[.n], size_t n);
void bcopy(const void src[.n], void dest[.n], size_t n);
void bzero(void s[.n], size_t n);
void *memccpy(void dest[.n], const void src[.n], int c, size_t n);
void *memchr(const void s[.n], int c, size_t n);
int memcmp(const void s1[.n], const void s2[.n], size_t n);
void *memcpy(void dest[.n], const void src[.n], size_t n);
void *memfrob(void s[.n], size_t n);
void *memmem(const void haystack[.haystacklen], size_t haystacklen,
const void needle[.needlelen], size_t needlelen);
void *memmove(void dest[.n], const void src[.n], size_t n);
void *memset(void s[.n], int c, size_t n);
DESCRIPTION
Ces fonctions agissent sur des chaînes d'octets (tableaux d'octets) qui ne
se terminent pas nécessairement par le caractère nul. Reportez-vous aux
pages de manuel de chaque fonction pour obtenir leur description.
NOTES
Les fonctions bcmp() et bcopy() sont obsolètes. Utilisez memcmp()
et memcpy() à la place.
VOIR AUSSI
bcmp(3), bcopy(3), bzero(3), memccpy(3), memchr(3),
memcmp(3), memcpy(3), memfrob(3), memmem(3), memmove(3),
memset(3), string(3)
TRADUCTION
La traduction française de cette page de manuel a été créée par
Christophe Blaess <https://www.blaess.fr/christophe/>,
Stéphan Rafin <stephan.rafin@laposte.net>,
Thierry Vignaud <tvignaud@mandriva.com>,
François Micaux,
Alain Portal <aportal@univ-montp2.fr>,
Jean-Philippe Guérard <fevrier@tigreraye.org>,
Jean-Luc Coulon (f5ibh) <jean-luc.coulon@wanadoo.fr>,
Julien Cristau <jcristau@debian.org>,
Thomas Huriaux <thomas.huriaux@gmail.com>,
Nicolas François <nicolas.francois@centraliens.net>,
Florentin Duneau <fduneau@gmail.com>,
Simon Paillard <simon.paillard@resel.enst-bretagne.fr>,
Denis Barbier <barbier@debian.org>,
David Prévot <david@tilapin.org>,
Frédéric Hantrais <fhantrais@gmail.com>
et
Jean-Pierre Giraud <jean-pierregiraud@neuf.fr>
Cette traduction est une documentation libre ; veuillez vous reporter à la
GNU General Public License version 3
concernant les conditions de copie et
de distribution. Il n'y a aucune RESPONSABILITÉ LÉGALE.
Si vous découvrez un bogue dans la traduction de cette page de manuel,
veuillez envoyer un message à
Index
- NOM
-
- BIBLIOTHÈQUE
-
- SYNOPSIS
-
- DESCRIPTION
-
- NOTES
-
- VOIR AUSSI
-
- TRADUCTION
-
This document was created by
man2html,
using the manual pages.
Time: 05:06:09 GMT, September 19, 2025