Changeset 6453 for trunk/src/crtdll/crt_wc.cpp
- Timestamp:
- Aug 4, 2001, 5:29:39 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/crtdll/crt_wc.cpp
r5090 r6453 1 /* $Id: crt_wc.cpp,v 1. 4 2001-02-11 10:33:13sandervl Exp $ */1 /* $Id: crt_wc.cpp,v 1.5 2001-08-04 15:29:39 sandervl Exp $ */ 2 2 3 3 /* … … 113 113 114 114 if (!n) return 0; 115 while ((--n > 0) && *str1 && (to wupper(*str1) == towupper(*str2)))115 while ((--n > 0) && *str1 && (toupperW(*str1) == toupperW(*str2))) 116 116 { 117 117 str1++; 118 118 str2++; 119 119 } 120 return to wupper(*str1) - towupper(*str2);120 return toupperW(*str1) - toupperW(*str2); 121 121 } 122 122 … … 178 178 dwIndex--) 179 179 { 180 to wupper(str[dwIndex]);180 toupperW(str[dwIndex]); 181 181 } 182 182 … … 428 428 429 429 /********************************************************************* 430 * to wupper(CRTDLL.491)430 * toupperW (CRTDLL.491) 431 431 */ 432 432 WCHAR CDECL CRTDLL_towupper(WCHAR c) … … 435 435 c)); 436 436 437 return (to wupper(c));437 return (toupperW(c)); 438 438 } 439 439
Note:
See TracChangeset
for help on using the changeset viewer.