2000-02-18 03:39:52 +08:00
|
|
|
/*
|
|
|
|
FUNCTION
|
2005-10-29 05:33:23 +08:00
|
|
|
<<strcasecmp>>---case-insensitive character string compare
|
2000-02-18 03:39:52 +08:00
|
|
|
|
|
|
|
INDEX
|
|
|
|
strcasecmp
|
|
|
|
|
2017-11-30 16:20:06 +08:00
|
|
|
SYNOPSIS
|
2011-08-23 20:01:51 +08:00
|
|
|
#include <strings.h>
|
2000-02-18 03:39:52 +08:00
|
|
|
int strcasecmp(const char *<[a]>, const char *<[b]>);
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
<<strcasecmp>> compares the string at <[a]> to
|
|
|
|
the string at <[b]> in a case-insensitive manner.
|
|
|
|
|
|
|
|
RETURNS
|
|
|
|
|
|
|
|
If <<*<[a]>>> sorts lexicographically after <<*<[b]>>> (after
|
2009-04-24 02:11:22 +08:00
|
|
|
both are converted to lowercase), <<strcasecmp>> returns a
|
2000-02-18 03:39:52 +08:00
|
|
|
number greater than zero. If the two strings match,
|
|
|
|
<<strcasecmp>> returns zero. If <<*<[a]>>> sorts
|
|
|
|
lexicographically before <<*<[b]>>>, <<strcasecmp>> returns a
|
|
|
|
number less than zero.
|
|
|
|
|
|
|
|
PORTABILITY
|
|
|
|
<<strcasecmp>> is in the Berkeley Software Distribution.
|
|
|
|
|
|
|
|
<<strcasecmp>> requires no supporting OS subroutines. It uses
|
|
|
|
tolower() from elsewhere in this library.
|
|
|
|
|
|
|
|
QUICKREF
|
2009-04-24 02:11:22 +08:00
|
|
|
strcasecmp
|
2000-02-18 03:39:52 +08:00
|
|
|
*/
|
|
|
|
|
2011-08-23 00:49:37 +08:00
|
|
|
#include <strings.h>
|
2000-02-18 03:39:52 +08:00
|
|
|
#include <ctype.h>
|
|
|
|
|
|
|
|
int
|
2017-12-04 11:43:30 +08:00
|
|
|
strcasecmp (const char *s1,
|
2017-12-04 10:25:16 +08:00
|
|
|
const char *s2)
|
2000-02-18 03:39:52 +08:00
|
|
|
{
|
2009-04-24 02:11:22 +08:00
|
|
|
int d = 0;
|
|
|
|
for ( ; ; )
|
2000-02-18 03:39:52 +08:00
|
|
|
{
|
2017-12-04 10:25:16 +08:00
|
|
|
const int c1 = tolower(*s1++);
|
|
|
|
const int c2 = tolower(*s2++);
|
2009-04-24 02:11:22 +08:00
|
|
|
if (((d = c1 - c2) != 0) || (c2 == '\0'))
|
|
|
|
break;
|
2000-02-18 03:39:52 +08:00
|
|
|
}
|
2009-04-24 02:11:22 +08:00
|
|
|
return d;
|
2000-02-18 03:39:52 +08:00
|
|
|
}
|