Date création : 27-03-2008 20:23:44
 Vous êtes dans : GNU/Linux Astuces / Pages man [Section3 - Sous-fonctions]
STRING
Index
- NOM
- SYNOPSIS
- DESCRIPTION
- VOIR AUSSI
- TRADUCTION
NOM
strcasecmp, strcat, strchr, strcmp, strcoll, strcpy, strcspn, strdup,
strfry, strlen, strncat, strncmp, strncpy, strncasecmp, strpbrk, strrchr,
strsep, strspn, strstr, strtok, strxfrm, index, rindex - Opérations sur les
chaînes de caractères
SYNOPSIS
#include <strings.h>
int strcasecmp(const char *s1, const char *s2);
int strncasecmp(const char *s1, const char *s2, size_t n);
char *index(const char *s, int c);
char *rindex(const char *s, int c);
#include <string.h>
char *strcat(char *dest, const char *src);
char *strchr(const char *s, int c);
int strcmp(const char *s1, const char *s2);
int strcoll(const char *s1, const char *s2);
char *strcpy(char *dest, const char *src);
size_t strcspn(const char *s, const char *reject);
char *strdup(const char *s);
char *strfry(char *string);
size_t strlen(const char *s);
char *strncat(char *dest, const char *src, size_t n);
int strncmp(const char *s1, const char *s2, size_t n);
char *strncpy(char *dest, const char *src, size_t n);
char *strpbrk(const char *s, const char *accept);
char *strrchr(const char *s, int c);
char *strsep(char **stringp, const char *délim);
size_t strspn(const char *s, const char *accept);
char *strstr(const char *meule_de_foin, const char *aiguille);
char *strtok(char *s, const char *délim);
size_t strxfrm (char *dest, const char *src, size_t n);
DESCRIPTION
Ces fonctions effectuent diverses opérations sur des chaînes de caractères
se terminant par un caractère nul. Voyez les pages de manuel individuelles
pour plus de détails.
VOIR AUSSI
index(3), rindex(3), strcasecmp(3), strcat(3), strchr(3)
strcmp(3), strcoll(3), strcpy(3), strcspn(3), strdup(3),
strfry(3), strlen(3), strncasecmp(3), strncat(3), strncmp(3),
strncpy(3), strpbrk(3), strrchr(3), strsep(3), strspn(3),
strstr(3), strtok(3), strxfrm(3)
TRADUCTION
Cette page de manuel a été traduite et mise à jour par
Christophe Blaess <http://www.blaess.fr/christophe/> entre 1996 et 2003,
puis par Alain Portal <aportal AT univ-montp2 DOT fr> jusqu'en 2006.
La traduction de cette page de manuel est basée sur les traductions
disponibles sur http://manpagesfr.free.fr/,
mais est gérée par l'équipe francophone de traduction de Debian
au travers de la liste de discussion debian-l10n-french.
Veuillez signaler toute erreur de traduction par un rapport de bogue sur
le paquet manpages-fr.
Vous pouvez toujours avoir accès à la version anglaise de ce document en
utilisant la commande
« man -L C <section> <page_de_man> ».
|