Use proper unicode routine.

This commit is contained in:
Guy L. Albertelli 2001-11-09 19:16:36 +00:00 committed by Alexandre Julliard
parent 1c3a242ec2
commit 11a5e849b4
1 changed files with 1 additions and 2 deletions

View File

@ -2,7 +2,6 @@
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <wctype.h>
#include "winerror.h"
#include "windef.h"
@ -377,7 +376,7 @@ LPWSTR WINAPI StrRChrIW( LPCWSTR lpStart, LPCWSTR lpEnd, WORD wMatch)
if (!lpEnd) lpEnd = lpStart + strlenW(lpStart);
for(; lpStart < lpEnd; lpStart = CharNextW(lpStart))
if (towupper(*lpStart) == towupper(wMatch)) lpGotIt = lpStart;
if (toupperW(*lpStart) == toupperW(wMatch)) lpGotIt = lpStart;
return (LPWSTR)lpGotIt;
}