msvcrt: Don't forward strcspn to ntdll.
Signed-off-by: Piotr Caban <piotr@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
48dbb17861
commit
f43ae5e803
|
@ -1802,7 +1802,7 @@
|
|||
@ cdecl strcoll(str str) MSVCRT_strcoll
|
||||
@ cdecl strcpy(ptr str) MSVCRT_strcpy
|
||||
@ cdecl strcpy_s(ptr long str) MSVCRT_strcpy_s
|
||||
@ cdecl strcspn(str str) ntdll.strcspn
|
||||
@ cdecl strcspn(str str) MSVCRT_strcspn
|
||||
@ cdecl strerror(long) MSVCRT_strerror
|
||||
@ cdecl strerror_s(ptr long long) MSVCRT_strerror_s
|
||||
@ cdecl strftime(ptr long str ptr) MSVCRT_strftime
|
||||
|
|
|
@ -2160,7 +2160,7 @@
|
|||
@ cdecl strcoll(str str) MSVCRT_strcoll
|
||||
@ cdecl strcpy(ptr str) MSVCRT_strcpy
|
||||
@ cdecl strcpy_s(ptr long str) MSVCRT_strcpy_s
|
||||
@ cdecl strcspn(str str) ntdll.strcspn
|
||||
@ cdecl strcspn(str str) MSVCRT_strcspn
|
||||
@ cdecl strerror(long) MSVCRT_strerror
|
||||
@ cdecl strerror_s(ptr long long) MSVCRT_strerror_s
|
||||
@ cdecl strftime(ptr long str ptr) MSVCRT_strftime
|
||||
|
|
|
@ -2370,7 +2370,7 @@
|
|||
@ cdecl strcoll(str str) MSVCRT_strcoll
|
||||
@ cdecl strcpy(ptr str) MSVCRT_strcpy
|
||||
@ cdecl strcpy_s(ptr long str) MSVCRT_strcpy_s
|
||||
@ cdecl strcspn(str str) ntdll.strcspn
|
||||
@ cdecl strcspn(str str) MSVCRT_strcspn
|
||||
@ cdecl strerror(long) MSVCRT_strerror
|
||||
@ cdecl strerror_s(ptr long long) MSVCRT_strerror_s
|
||||
@ cdecl strftime(ptr long str ptr) MSVCRT_strftime
|
||||
|
|
|
@ -814,7 +814,7 @@
|
|||
@ cdecl strcmp(str str) MSVCRT_strcmp
|
||||
@ cdecl strcoll(str str) MSVCRT_strcoll
|
||||
@ cdecl strcpy(ptr str) MSVCRT_strcpy
|
||||
@ cdecl strcspn(str str) ntdll.strcspn
|
||||
@ cdecl strcspn(str str) MSVCRT_strcspn
|
||||
@ cdecl strerror(long) MSVCRT_strerror
|
||||
@ cdecl strftime(ptr long str ptr) MSVCRT_strftime
|
||||
@ cdecl strlen(str) MSVCRT_strlen
|
||||
|
|
|
@ -810,7 +810,7 @@
|
|||
@ cdecl strcmp(str str) MSVCRT_strcmp
|
||||
@ cdecl strcoll(str str) MSVCRT_strcoll
|
||||
@ cdecl strcpy(ptr str) MSVCRT_strcpy
|
||||
@ cdecl strcspn(str str) ntdll.strcspn
|
||||
@ cdecl strcspn(str str) MSVCRT_strcspn
|
||||
@ cdecl strerror(long) MSVCRT_strerror
|
||||
@ cdecl strftime(ptr long str ptr) MSVCRT_strftime
|
||||
@ cdecl strlen(str) MSVCRT_strlen
|
||||
|
|
|
@ -1482,7 +1482,7 @@
|
|||
@ cdecl strcoll(str str) MSVCRT_strcoll
|
||||
@ cdecl strcpy(ptr str) MSVCRT_strcpy
|
||||
@ cdecl strcpy_s(ptr long str) MSVCRT_strcpy_s
|
||||
@ cdecl strcspn(str str) ntdll.strcspn
|
||||
@ cdecl strcspn(str str) MSVCRT_strcspn
|
||||
@ cdecl strerror(long) MSVCRT_strerror
|
||||
@ cdecl strerror_s(ptr long long) MSVCRT_strerror_s
|
||||
@ cdecl strftime(ptr long str ptr) MSVCRT_strftime
|
||||
|
|
|
@ -1455,7 +1455,7 @@
|
|||
@ cdecl strcoll(str str) MSVCRT_strcoll
|
||||
@ cdecl strcpy(ptr str) MSVCRT_strcpy
|
||||
@ cdecl strcpy_s(ptr long str) MSVCRT_strcpy_s
|
||||
@ cdecl strcspn(str str) ntdll.strcspn
|
||||
@ cdecl strcspn(str str) MSVCRT_strcspn
|
||||
@ cdecl strerror(long) MSVCRT_strerror
|
||||
@ cdecl strerror_s(ptr long long) MSVCRT_strerror_s
|
||||
@ cdecl strftime(ptr long str ptr) MSVCRT_strftime
|
||||
|
|
|
@ -1423,7 +1423,7 @@
|
|||
@ cdecl strcoll(str str) MSVCRT_strcoll
|
||||
@ cdecl strcpy(ptr str) MSVCRT_strcpy
|
||||
@ cdecl strcpy_s(ptr long str) MSVCRT_strcpy_s
|
||||
@ cdecl strcspn(str str) ntdll.strcspn
|
||||
@ cdecl strcspn(str str) MSVCRT_strcspn
|
||||
@ cdecl strerror(long) MSVCRT_strerror
|
||||
@ cdecl strerror_s(ptr long long) MSVCRT_strerror_s
|
||||
@ cdecl strftime(ptr long str ptr) MSVCRT_strftime
|
||||
|
|
|
@ -2044,3 +2044,11 @@ int __cdecl MSVCRT__memicmp(const char *s1, const char *s2, MSVCRT_size_t len)
|
|||
{
|
||||
return MSVCRT__memicmp_l(s1, s2, len, NULL);
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* strcspn (MSVCRT.@)
|
||||
*/
|
||||
MSVCRT_size_t __cdecl MSVCRT_strcspn(const char *str, const char *reject)
|
||||
{
|
||||
return strcspn( str, reject );
|
||||
}
|
||||
|
|
|
@ -2501,7 +2501,7 @@
|
|||
@ cdecl strcoll(str str) MSVCRT_strcoll
|
||||
@ cdecl strcpy(ptr str) MSVCRT_strcpy
|
||||
@ cdecl strcpy_s(ptr long str) MSVCRT_strcpy_s
|
||||
@ cdecl strcspn(str str) ntdll.strcspn
|
||||
@ cdecl strcspn(str str) MSVCRT_strcspn
|
||||
@ cdecl strerror(long) MSVCRT_strerror
|
||||
@ cdecl strerror_s(ptr long long) MSVCRT_strerror_s
|
||||
@ cdecl strftime(ptr long str ptr) MSVCRT_strftime
|
||||
|
|
Loading…
Reference in New Issue