Changeset 8938 for trunk/tools/wrc/utils.c
- Timestamp:
- Jul 30, 2002, 2:55:06 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/wrc/utils.c
r8596 r8938 432 432 433 433 #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 446 434 INT WINAPI strcasecmp( LPCSTR p1, LPCSTR p2 ) 447 435 {
Note:
See TracChangeset
for help on using the changeset viewer.