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.
 
 
 
 
 
 

106 lines
2.4 KiB

/***
*mbtoupr.c - Convert character to upper case (MBCS)
*
* Copyright (c) 1985-1994, Microsoft Corporation. All rights reserved.
*
*Purpose:
* Convert character to upper case (MBCS)
*
*Revision History:
* 11-19-92 KRS Ported from 16-bit sources.
* 08-20-93 CFW Change short params to int for 32-bit tree.
* 09-29-93 CFW Merge _KANJI and _MBCS_OS
* 10-06-93 GJF Replaced _CRTAPI1 with __cdecl.
* 04-12-94 CFW Make function generic.
* 04-21-94 CFW Return bad chars unchanged.
* 05-16-94 CFW Use _mbbtolower/upper.
* 05-17-94 CFW Enable non-Win32.
*
*******************************************************************************/
#ifdef _MBCS
#ifdef _WIN32
#include <awint.h>
#endif /* _WIN32 */
#include <cruntime.h>
#include <ctype.h>
#include <mbdata.h>
#include <mbctype.h>
#include <mbstring.h>
/***
* _mbctoupper - Convert character to upper case (MBCS)
*
*Purpose:
* If the given character is lower case, convert to upper case.
* Handles MBCS chars correctly.
*
* Note: Use test against 0x00FF instead of _ISLEADBYTE
* to ensure that we don't call SBCS routine with a two-byte
* value.
*
*Entry:
* unsigned int c = character to convert
*
*Exit:
* Returns converted character
*
*Exceptions:
*
*******************************************************************************/
unsigned int __cdecl _mbctoupper(
unsigned int c
)
{
unsigned char val[2];
#if defined(_WIN32) && !defined(_POSIX_)
unsigned char ret[4];
#endif /* _WIN32 */
if (c > 0x00FF)
{
val[0] = (c >> 8) & 0xFF;
val[1] = c & 0xFF;
if (!_ismbblead(val[0]))
return c;
#if defined( _WIN32 ) && !defined(_POSIX_)
if (__crtLCMapStringA( __mblcid,
LCMAP_UPPERCASE,
val,
2,
ret,
2,
__mbcodepage) == 0)
return c;
c = ret[1];
c += ret[0] << 8;
return c;
#else /* _WIN32 */
if (c >= _MBLOWERLOW1 && c <= _MBLOWERHIGH1)
c -= _MBCASEDIFF1;
else if (c >= _MBLOWERLOW2 && c <= _MBLOWERHIGH2)
c -= _MBCASEDIFF2;
return c;
#endif /* _WIN32 */
} else
return (unsigned int)_mbbtoupper((int)c);
}
#endif /* _MBCS */