Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

125 lines
2.9 KiB

/***
*mbsnicmp.c - Compare n characters of strings, ignoring case (MBCS)
*
* Copyright (c) 1985-1994, Microsoft Corporation. All rights reserved.
*
*Purpose:
* Compare n characters of strings, ignoring case (MBCS)
*
*Revision History:
* 11-19-92 KRS Ported from 16-bit sources.
* 09-29-93 CFW Merge _KANJI and _MBCS_OS
* 10-05-93 GJF Replaced _CRTAPI1 with __cdecl.
* 10-12-93 CFW Compare lower case, not upper.
* 04-12-94 CFW Make function generic.
* 04-15-93 CFW Add _MB_CP_LOCK.
* 04-21-93 CFW Update pointer.
* 05-05-94 CFW Work around NT/Chico bug: CompareString ignores
* control characters.
* 05-09-94 CFW Optimize for SBCS, no re-scan if CompareString fixed.
* 05-12-94 CFW Back to hard-coded, CompareString sort is backwards.
* 05-16-94 CFW Use _mbbtolower/upper.
* 05-19-94 CFW Enable non-Win32.
*
*******************************************************************************/
#ifdef _MBCS
#include <mtdll.h>
#include <cruntime.h>
#include <mbdata.h>
#include <mbctype.h>
#include <string.h>
#include <mbstring.h>
/***
* _mbsnicmp - Compare n characters of strings, ignoring case (MBCS)
*
*Purpose:
* Compares up to n charcters of two strings for lexical order.
* Strings are compared on a character basis, not a byte basis.
* Case of characters is not considered.
*
*Entry:
* unsigned char *s1, *s2 = strings to compare
* size_t n = maximum number of characters to compare
*
*Exit:
* returns <0 if s1 < s2
* returns 0 if s1 == s2
* returns >0 if s1 > s2
*
*Exceptions:
*
*******************************************************************************/
int __cdecl _mbsnicmp(
const unsigned char *s1,
const unsigned char *s2,
size_t n
)
{
unsigned short c1, c2;
if (n==0)
return(0);
if (0 == __mbcodepage)
return _strnicmp(s1, s2, n);
_mlock(_MB_CP_LOCK);
while (n--) {
c1 = *s1++;
if (_ISLEADBYTE(c1)) {
if (*s1 == '\0')
c1 = 0;
else {
c1 = ((c1<<8) | *s1++);
if ( ((c1 >= _MBUPPERLOW1) && (c1 <= _MBUPPERHIGH1)) )
c1 += _MBCASEDIFF1;
else if ( ((c1 >= _MBUPPERLOW2) && (c1 <= _MBUPPERHIGH2)) )
c1 += _MBCASEDIFF2;
}
}
else
c1 = _mbbtolower(c1);
c2 = *s2++;
if (_ISLEADBYTE(c2)) {
if (*s2 == '\0')
c2 = 0;
else {
c2 = ((c2<<8) | *s2++);
if ( ((c2 >= _MBUPPERLOW1) && (c2 <= _MBUPPERHIGH1)) )
c2 += _MBCASEDIFF1;
else if ( ((c2 >= _MBUPPERLOW2) && (c2 <= _MBUPPERHIGH2)) )
c2 += _MBCASEDIFF2;
}
}
else
c2 = _mbbtolower(c2);
if (c1 != c2)
{
_munlock(_MB_CP_LOCK);
return( (c1 > c2) ? 1 : -1 );
}
if (c1 == 0)
{
_munlock(_MB_CP_LOCK);
return(0);
}
}
_munlock(_MB_CP_LOCK);
return(0);
}
#endif /* _MBCS */