/*** *mbsnbcmp.c - Compare n bytes of two MBCS strings * * Copyright (c) 1985-1994, Microsoft Corporation. All rights reserved. * *Purpose: * Compare n bytes of two MBCS strings * *Revision History: * 08-03-93 KRS Ported from 16-bit sources. * 10-05-93 GJF Replaced _CRTAPI1 with __cdecl. * 04-12-94 CFW Make function generic. * 04-18-94 CFW Don't ignore case. * 05-05-94 CFW Work around NT/Chico bug: CompareString ignores * control characters. * 05-09-94 CFW Return EQUAL when loop exits. * 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-19-94 CFW Enable non-Win32. * 05-20-94 CFW Bug fix: if last char is LB, must still test values. * 05-27-94 CFW Last char LB should end string. * 06-02-94 CFW Fix comments. * *******************************************************************************/ #ifdef _MBCS #include #include #include #include #include #include /*** *int mbsnbcmp(s1, s2, n) - Compare n bytes of two MBCS strings * *Purpose: * Compares up to n bytes of two strings for lexical order. * *Entry: * unsigned char *s1, *s2 = strings to compare * size_t n = maximum number of bytes to compare * *Exit: * returns <0 if s1 < s2 * returns 0 if s1 == s2 * returns >0 if s1 > s2 * *Exceptions: * *******************************************************************************/ int __cdecl _mbsnbcmp( const unsigned char *s1, const unsigned char *s2, size_t n ) { unsigned short c1, c2; if (n==0) return(0); if (0 == __mbcodepage) return strncmp(s1, s2, n); _mlock(_MB_CP_LOCK); while (n--) { c1 = *s1++; if (_ISLEADBYTE(c1)) { if (n==0) { c1 = 0; /* 'naked' lead - end of string */ c2 = _ISLEADBYTE(*s2) ? 0 : *s2; goto test; } c1 = ( (*s1 == '\0') ? 0 : ((c1<<8) | *s1++) ); } c2 = *s2++; if (_ISLEADBYTE(c2)) { if (n==0) { c2 = 0; /* 'naked' lead - end of string */ goto test; } --n; c2 = ( (*s2 == '\0') ? 0 : ((c2<<8) | *s2++) ); } test: 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 */