msvcrt: Copy strrchr implementation from ntdll.
Signed-off-by: Piotr Caban <piotr@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
d9c9d21d66
commit
a511c0937c
|
@ -2302,7 +2302,9 @@ char* __cdecl MSVCRT_strchr(const char *str, int c)
|
|||
*/
|
||||
char* __cdecl MSVCRT_strrchr(const char *str, int c)
|
||||
{
|
||||
return strrchr(str, c);
|
||||
char *ret = NULL;
|
||||
do { if (*str == (char)c) ret = (char*)str; } while (*str++);
|
||||
return ret;
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
|
|
Loading…
Reference in New Issue