157 lines
4.1 KiB
C
157 lines
4.1 KiB
C
/***
|
|
*towupper.c - convert wide character to upper case
|
|
*
|
|
* Copyright (c) 1991-2001, Microsoft Corporation. All rights reserved.
|
|
*
|
|
*Purpose:
|
|
* Defines towupper().
|
|
*
|
|
*Revision History:
|
|
* 10-11-91 ETC Created.
|
|
* 12-10-91 ETC Updated nlsapi; added multithread.
|
|
* 04-06-92 KRS Make work without _INTL also.
|
|
* 01-19-93 CFW Changed LCMapString to LCMapStringW.
|
|
* 04-06-93 SKS Replace _CRTAPI* with _cdecl
|
|
* 06-02-93 SRW ignore _INTL if _NTSUBSET_ defined.
|
|
* 06-11-93 CFW Fix error handling bug.
|
|
* 09-15-93 CFW Use ANSI conformant "__" names.
|
|
* 09-22-93 CFW Use __crtxxx internal NLS API wrapper.
|
|
* 09-29-93 GJF Merged NT SDK and Cuda versions.
|
|
* 11-09-93 CFW Add code page for __crtxxx().
|
|
* 01-14-94 SRW if _NTSUBSET_ defined call Rtl functions
|
|
* 02-07-94 CFW POSIXify.
|
|
* 09-06-94 CFW Remove _INTL switch.
|
|
* 10-25-94 GJF Sped up for C locale. Added _towupper_lk. Also,
|
|
* cleaned up pre-processor conditionals.
|
|
* 09-26-95 GJF New locking macro, and scheme, for functions which
|
|
* reference the locale.
|
|
* 04-01-96 BWT POSIX work.
|
|
* 06-25-96 GJF Removed DLL_FOR_WIN32S and cleaned up the format a
|
|
* wee bit.
|
|
* 08-27-98 GJF Revised multithread support based on threadlocinfo
|
|
* struct.
|
|
*
|
|
*******************************************************************************/
|
|
|
|
#if defined(_NTSUBSET_) || defined(_POSIX_)
|
|
#include <nt.h>
|
|
#include <ntrtl.h>
|
|
#include <nturtl.h>
|
|
#endif
|
|
|
|
#include <cruntime.h>
|
|
#include <ctype.h>
|
|
#include <stdio.h>
|
|
#include <locale.h>
|
|
#include <setlocal.h>
|
|
#include <mtdll.h>
|
|
#include <awint.h>
|
|
|
|
/***
|
|
*wchar_t towupper(c) - convert wide character to upper case
|
|
*
|
|
*Purpose:
|
|
* towupper() returns the uppercase equivalent of its argument
|
|
*
|
|
*Entry:
|
|
* c - wchar_t value of character to be converted
|
|
*
|
|
*Exit:
|
|
* if c is a lower case letter, returns wchar_t value of upper case
|
|
* representation of c. otherwise, it returns c.
|
|
*
|
|
*Exceptions:
|
|
*
|
|
*******************************************************************************/
|
|
|
|
wchar_t __cdecl towupper (
|
|
wchar_t c
|
|
)
|
|
{
|
|
#if !defined(_NTSUBSET_) && !defined(_POSIX_)
|
|
|
|
#ifdef _MT
|
|
|
|
pthreadlocinfo ptloci = _getptd()->ptlocinfo;
|
|
|
|
if ( ptloci != __ptlocinfo )
|
|
ptloci = __updatetlocinfo();
|
|
|
|
if ( ptloci->lc_handle[LC_CTYPE] == _CLOCALEHANDLE )
|
|
return __ascii_towupper(c);
|
|
|
|
return __towupper_mt(ptloci, c);
|
|
}
|
|
|
|
/***
|
|
*wchar_t __towupper_mt(ptloci, c) - convert wide character to upper case
|
|
*
|
|
*Purpose:
|
|
* Multi-thread function only! Non-locking version of towupper.
|
|
*
|
|
*Entry:
|
|
*
|
|
*Exit:
|
|
*
|
|
*Exceptions:
|
|
*
|
|
*******************************************************************************/
|
|
|
|
wchar_t __cdecl __towupper_mt (
|
|
pthreadlocinfo ptloci,
|
|
wchar_t c
|
|
)
|
|
{
|
|
|
|
#endif /* _MT */
|
|
|
|
wchar_t widechar;
|
|
|
|
if (c == WEOF)
|
|
return c;
|
|
|
|
#ifndef _MT
|
|
if ( __lc_handle[LC_CTYPE] == _CLOCALEHANDLE )
|
|
return __ascii_towupper(c);
|
|
#endif
|
|
|
|
/* if checking case of c does not require API call, do it */
|
|
if ( c < 256 ) {
|
|
#ifdef _MT
|
|
if ( !__iswlower_mt(ptloci, c) ) {
|
|
#else
|
|
if ( !iswlower(c) ) {
|
|
#endif
|
|
return c;
|
|
}
|
|
}
|
|
|
|
/* convert wide char to uppercase */
|
|
#ifdef _MT
|
|
if ( 0 == __crtLCMapStringW( ptloci->lc_handle[LC_CTYPE],
|
|
#else
|
|
if ( 0 == __crtLCMapStringW( __lc_handle[LC_CTYPE],
|
|
#endif
|
|
LCMAP_UPPERCASE,
|
|
(LPCWSTR)&c,
|
|
1,
|
|
(LPWSTR)&widechar,
|
|
1,
|
|
#ifdef _MT
|
|
ptloci->lc_codepage ) )
|
|
#else
|
|
__lc_codepage ) )
|
|
#endif
|
|
{
|
|
return c;
|
|
}
|
|
|
|
return widechar;
|
|
|
|
#else /* _NTSUBSET_/_POSIX_ */
|
|
|
|
return RtlUpcaseUnicodeChar( c );
|
|
|
|
#endif /* _NTSUBSET_/_POSIX_ */
|
|
}
|