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.
 
 
 
 
 
 

76 lines
1.6 KiB

/***
*mbsnbcol.c - Collate n bytes of two MBCS strings
*
* Copyright (c) 1994, Microsoft Corporation. All rights reserved.
*
*Purpose:
* Collate n bytes of two MBCS strings
*
*Revision History:
* 05-12-94 CFW Module created from mbs*cmp.c
* 06-02-94 CFW Fix comments.
* 06-03-94 CFW Fix cntrl char loop count.
* 06-03-94 CFW Allow non-_INTL.
* 09-06-94 CFW Allow non-_WIN32!.
* 12-21-94 CFW Remove fcntrlcomp NT 3.1 hack.
*
*******************************************************************************/
#ifdef _MBCS
#if defined(_WIN32)
#include <awint.h>
#include <mtdll.h>
#endif /* _WIN32 */
#include <cruntime.h>
#include <internal.h>
#include <mbdata.h>
#include <mbctype.h>
#include <string.h>
#include <mbstring.h>
/***
* _mbsnbcoll(s1, s2, n) - Collate n bytes of two MBCS strings
*
*Purpose:
* Collates up to n bytes of two strings for lexical order.
*
*Entry:
* unsigned char *s1, *s2 = strings to collate
* size_t n = maximum number of bytes to collate
*
*Exit:
* returns <0 if s1 < s2
* returns 0 if s1 == s2
* returns >0 if s1 > s2
*
*Exceptions:
*
*******************************************************************************/
int __cdecl _mbsnbcoll(
const unsigned char *s1,
const unsigned char *s2,
size_t n
)
{
#if !defined(_WIN32) || defined(_POSIX_)
return _mbsnbcmp(s1, s2, n);
#else
int ret;
if (n == 0)
return 0;
if (0 == (ret = __crtCompareStringA(__mblcid, 0,
s1, n, s2, n, __mbcodepage)))
return _NLSCMPERROR;
return ret - 2;
#endif /* _WIN32 */
}
#endif /* _MBCS */