man strnlen (Fonctions bibliothèques) - Déterminer la longueur d'une chaîne.

NOM

strnlen - Déterminer la longueur d'une chaîne.

SYNOPSIS

#include <string.h>

size_t strnlen (const char *s, size_t maxlen);

DESCRIPTION

La fonction strnlen renvoie le nombre de caractères de la chaîne pointée par s (non compris le caractère '\0' final), mais en examinant au maximum maxlen caractères. Les caractères suivants (s+maxlen) ne seront jamais lus.

VALEUR RENVOYÉE

La fonction strnlen renvoie strlen(s) si la longeur est inférieure à maxlen, sinon elle renvoie maxlen.

CONFORMITÉ

Cette fonction est une extension GNU.

VOIR AUSSI

TRADUCTION

Thierry Vignaud <tvignaud@mandrakesoft.com>, 1999

Christophe Blaess, 2003.