Linguaggio C - strcmp(), strncmp()

NOME

strcmp(), strncmp() - confronta due stringhe

SINOPSI

#include <string.h> int strcmp(const char *s1, const char *s2); int strncmp(const char *s1, const char *s2, size_t n);

DESCRIZIONE

La funzione strcmp() effettua il confronto fra le due stringhe s1 e s2.

La funzione strncmp() limita il confronto fra le due stringhe s1 e s2 al piu' a n caratteri.

VALORE DI RITORNO

Le funzioni strcmp() e strncmp() ritornano un intero minore, uguale o maggiore di 0 a seconda che s1 sia (o i primi n caratteri siano) rispettivamente minore, uguale o maggiore di s2.

CONFORME A

SVID 3, POSIX, BSD 4.3, ISO 9899

VEDI ANCHE

strlen() strcpy(), strncpy() strcat(), strncat()


Indice-C Indice linguaggio C
Indice librerie Indice librerie C
At Home Umberto Zappi Home Page
Indice funzioni Indice funzioni C