Ignore:
Timestamp:
Jul 30, 2002, 2:55:06 PM (23 years ago)
Author:
sandervl
Message:

PF: Unicode update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/wrc/utils.c

    r8596 r8938  
    432432
    433433#if defined(__WIN32OS2__)
    434 WCHAR WINAPI toupperW( WCHAR ch )
    435 {
    436     extern const WCHAR casemap_upper[];
    437     return ch + casemap_upper[casemap_upper[ch >> 8] + (ch & 0xff)];
    438 }
    439 
    440 WCHAR WINAPI tolowerW( WCHAR ch )
    441 {
    442     extern const WCHAR casemap_lower[];
    443     return ch + casemap_lower[casemap_lower[ch >> 8] + (ch & 0xff)];
    444 }
    445 
    446434INT WINAPI strcasecmp( LPCSTR p1, LPCSTR p2 )
    447435{
Note: See TracChangeset for help on using the changeset viewer.