strcmp(), strncmp() - confronta due stringhe
#include int strcmp(const char *s1, const char *s2); int strncmp(const char *s1, const char *s2, size_t n);
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.
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.
SVID 3, POSIX, BSD 4.3, ISO 9899
strlen() strcpy(), strncpy() strcat(), strncat()
Indice linguaggio C |
Indice librerie C |
Umberto Zappi Home Page |
Indice funzioni C |