mirror of
https://github.com/reactos/wine.git
synced 2025-03-05 11:17:59 +00:00
msvcrt: Don't forward strrchr to ntdll.
This commit is contained in:
parent
31d92b926e
commit
138df7da33
@ -1435,7 +1435,7 @@
|
||||
@ cdecl strncpy_s(ptr long str long)
|
||||
@ cdecl strnlen(str long) MSVCRT_strnlen
|
||||
@ cdecl strpbrk(str str) ntdll.strpbrk
|
||||
@ cdecl strrchr(str long) ntdll.strrchr
|
||||
@ cdecl strrchr(str long) MSVCRT_strrchr
|
||||
@ cdecl strspn(str str) ntdll.strspn
|
||||
@ cdecl strstr(str str) ntdll.strstr
|
||||
@ cdecl strtod(str ptr) MSVCRT_strtod
|
||||
|
@ -1649,6 +1649,14 @@ char* __cdecl MSVCRT_strchr(const char *str, int c)
|
||||
return strchr(str, c);
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* strrchr (MSVCRT.@)
|
||||
*/
|
||||
char* __cdecl MSVCRT_strrchr(const char *str, int c)
|
||||
{
|
||||
return strrchr(str, c);
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* memchr (MSVCRT.@)
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user