#include <strings.h>
int strcasecmp(const char *f1, const char *f2);
Return Values (CASE INSENSETIVE):
0 if both the strings are equal.
< 1 if f1 is less than f2.
> 1 if f1 is greater than f2.
Upon completion, strcasecmp() shall return an integer greater than, equal to, or less than 0, if the string pointed to by s1 is, ignoring case, greater than, equal to, or less than the string pointed to by s2, respectively.
int strcasecmp(const char *f1, const char *f2);
Code Example |
---|
C :: how to mutex lock in c |
C :: remove first character from string c |
C :: dart in android studio |
C :: c printf uint32_t |
C :: if statement c short form |
C :: c float to string |
C :: bootstrap 5 image responsive |
C :: read from a file c |
C :: round function in c |
C :: malloc in c |
C :: How to change an array in a function in c |
C :: Array Input/Output in C |
C :: c realloc |
C :: c int |
C :: c float |
C :: format specifiers in c |
C :: vowel and consonant C |
C :: star pattern in c |
C :: how to convert int in to const char in c |
C :: check if pid exists c |
C :: link list c |
C :: continue statement in c |
C :: C strlen implementation |
C :: mysql yyyymm format |
C :: access 2d array with pointer c |
C :: tuples in c |
C :: %g and %e in c |
C :: sphinx-doc |
C :: national festivals of india in hindi |
C :: count number of items using delimiter |