2000-02-18 03:39:52 +08:00
|
|
|
/*
|
|
|
|
FUNCTION
|
2005-10-29 05:33:23 +08:00
|
|
|
<<strncasecmp>>---case-insensitive character string compare
|
2000-02-18 03:39:52 +08:00
|
|
|
|
|
|
|
INDEX
|
|
|
|
strncasecmp
|
|
|
|
|
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 strncasecmp(const char *<[a]>, const char * <[b]>, size_t <[length]>);
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
<<strncasecmp>> compares up to <[length]> characters
|
|
|
|
from 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), <<strncasecmp>> returns a
|
2000-02-18 03:39:52 +08:00
|
|
|
number greater than zero. If the two strings are equivalent,
|
|
|
|
<<strncasecmp>> returns zero. If <<*<[a]>>> sorts
|
|
|
|
lexicographically before <<*<[b]>>>, <<strncasecmp>> returns a
|
|
|
|
number less than zero.
|
|
|
|
|
|
|
|
PORTABILITY
|
|
|
|
<<strncasecmp>> is in the Berkeley Software Distribution.
|
|
|
|
|
|
|
|
<<strncasecmp>> requires no supporting OS subroutines. It uses
|
|
|
|
tolower() from elsewhere in this library.
|
|
|
|
|
|
|
|
QUICKREF
|
|
|
|
strncasecmp
|
|
|
|
*/
|
|
|
|
|
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
|
|
|
strncasecmp (const char *s1,
|
2017-12-04 10:25:16 +08:00
|
|
|
const char *s2,
|
2000-02-18 03:39:52 +08:00
|
|
|
size_t n)
|
|
|
|
{
|
2009-04-07 06:42:08 +08:00
|
|
|
int d = 0;
|
|
|
|
for ( ; n != 0; n--)
|
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-07 06:42:08 +08:00
|
|
|
if (((d = c1 - c2) != 0) || (c2 == '\0'))
|
|
|
|
break;
|
2000-02-18 03:39:52 +08:00
|
|
|
}
|
2009-04-07 06:42:08 +08:00
|
|
|
return d;
|
2000-02-18 03:39:52 +08:00
|
|
|
}
|