msvcrt: Don't forward strpbrk to ntdll.
Signed-off-by: Piotr Caban <piotr@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
f43ae5e803
commit
c99d14d04d
|
@ -1813,7 +1813,7 @@
|
|||
@ cdecl strncpy(ptr str long) MSVCRT_strncpy
|
||||
@ cdecl strncpy_s(ptr long str long) MSVCRT_strncpy_s
|
||||
@ cdecl strnlen(str long) MSVCRT_strnlen
|
||||
@ cdecl strpbrk(str str) ntdll.strpbrk
|
||||
@ cdecl strpbrk(str str) MSVCRT_strpbrk
|
||||
@ cdecl strrchr(str long) MSVCRT_strrchr
|
||||
@ cdecl strspn(str str) ntdll.strspn
|
||||
@ cdecl strstr(str str) MSVCRT_strstr
|
||||
|
|
|
@ -2171,7 +2171,7 @@
|
|||
@ cdecl strncpy(ptr str long) MSVCRT_strncpy
|
||||
@ cdecl strncpy_s(ptr long str long) MSVCRT_strncpy_s
|
||||
@ cdecl strnlen(str long) MSVCRT_strnlen
|
||||
@ cdecl strpbrk(str str) ntdll.strpbrk
|
||||
@ cdecl strpbrk(str str) MSVCRT_strpbrk
|
||||
@ cdecl strrchr(str long) MSVCRT_strrchr
|
||||
@ cdecl strspn(str str) ntdll.strspn
|
||||
@ cdecl strstr(str str) MSVCRT_strstr
|
||||
|
|
|
@ -2381,7 +2381,7 @@
|
|||
@ cdecl strncpy(ptr str long) MSVCRT_strncpy
|
||||
@ cdecl strncpy_s(ptr long str long) MSVCRT_strncpy_s
|
||||
@ cdecl strnlen(str long) MSVCRT_strnlen
|
||||
@ cdecl strpbrk(str str) ntdll.strpbrk
|
||||
@ cdecl strpbrk(str str) MSVCRT_strpbrk
|
||||
@ cdecl strrchr(str long) MSVCRT_strrchr
|
||||
@ cdecl strspn(str str) ntdll.strspn
|
||||
@ cdecl strstr(str str) MSVCRT_strstr
|
||||
|
|
|
@ -821,7 +821,7 @@
|
|||
@ cdecl strncat(str str long) MSVCRT_strncat
|
||||
@ cdecl strncmp(str str long) MSVCRT_strncmp
|
||||
@ cdecl strncpy(ptr str long) MSVCRT_strncpy
|
||||
@ cdecl strpbrk(str str) ntdll.strpbrk
|
||||
@ cdecl strpbrk(str str) MSVCRT_strpbrk
|
||||
@ cdecl strrchr(str long) MSVCRT_strrchr
|
||||
@ cdecl strspn(str str) ntdll.strspn
|
||||
@ cdecl strstr(str str) MSVCRT_strstr
|
||||
|
|
|
@ -817,7 +817,7 @@
|
|||
@ cdecl strncat(str str long) MSVCRT_strncat
|
||||
@ cdecl strncmp(str str long) MSVCRT_strncmp
|
||||
@ cdecl strncpy(ptr str long) MSVCRT_strncpy
|
||||
@ cdecl strpbrk(str str) ntdll.strpbrk
|
||||
@ cdecl strpbrk(str str) MSVCRT_strpbrk
|
||||
@ cdecl strrchr(str long) MSVCRT_strrchr
|
||||
@ cdecl strspn(str str) ntdll.strspn
|
||||
@ cdecl strstr(str str) MSVCRT_strstr
|
||||
|
|
|
@ -1493,7 +1493,7 @@
|
|||
@ cdecl strncpy(ptr str long) MSVCRT_strncpy
|
||||
@ cdecl strncpy_s(ptr long str long) MSVCRT_strncpy_s
|
||||
@ cdecl strnlen(str long) MSVCRT_strnlen
|
||||
@ cdecl strpbrk(str str) ntdll.strpbrk
|
||||
@ cdecl strpbrk(str str) MSVCRT_strpbrk
|
||||
@ cdecl strrchr(str long) MSVCRT_strrchr
|
||||
@ cdecl strspn(str str) ntdll.strspn
|
||||
@ cdecl strstr(str str) MSVCRT_strstr
|
||||
|
|
|
@ -1466,7 +1466,7 @@
|
|||
@ cdecl strncpy(ptr str long) MSVCRT_strncpy
|
||||
@ cdecl strncpy_s(ptr long str long) MSVCRT_strncpy_s
|
||||
@ cdecl strnlen(str long) MSVCRT_strnlen
|
||||
@ cdecl strpbrk(str str) ntdll.strpbrk
|
||||
@ cdecl strpbrk(str str) MSVCRT_strpbrk
|
||||
@ cdecl strrchr(str long) MSVCRT_strrchr
|
||||
@ cdecl strspn(str str) ntdll.strspn
|
||||
@ cdecl strstr(str str) MSVCRT_strstr
|
||||
|
|
|
@ -1434,7 +1434,7 @@
|
|||
@ cdecl strncpy(ptr str long) MSVCRT_strncpy
|
||||
@ cdecl strncpy_s(ptr long str long) MSVCRT_strncpy_s
|
||||
@ cdecl strnlen(str long) MSVCRT_strnlen
|
||||
@ cdecl strpbrk(str str) ntdll.strpbrk
|
||||
@ cdecl strpbrk(str str) MSVCRT_strpbrk
|
||||
@ cdecl strrchr(str long) MSVCRT_strrchr
|
||||
@ cdecl strspn(str str) ntdll.strspn
|
||||
@ cdecl strstr(str str) MSVCRT_strstr
|
||||
|
|
|
@ -2052,3 +2052,11 @@ MSVCRT_size_t __cdecl MSVCRT_strcspn(const char *str, const char *reject)
|
|||
{
|
||||
return strcspn( str, reject );
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* strpbrk (MSVCRT.@)
|
||||
*/
|
||||
char* __cdecl MSVCRT_strpbrk(const char *str, const char *accept)
|
||||
{
|
||||
return strpbrk(str, accept);
|
||||
}
|
||||
|
|
|
@ -2512,7 +2512,7 @@
|
|||
@ cdecl strncpy(ptr str long) MSVCRT_strncpy
|
||||
@ cdecl strncpy_s(ptr long str long) MSVCRT_strncpy_s
|
||||
@ cdecl strnlen(str long) MSVCRT_strnlen
|
||||
@ cdecl strpbrk(str str) ntdll.strpbrk
|
||||
@ cdecl strpbrk(str str) MSVCRT_strpbrk
|
||||
@ cdecl strrchr(str long) MSVCRT_strrchr
|
||||
@ cdecl strspn(str str) ntdll.strspn
|
||||
@ cdecl strstr(str str) MSVCRT_strstr
|
||||
|
|
Loading…
Reference in New Issue