msvcrt: Don't forward strlen to ntdll.
This commit is contained in:
parent
1803016c08
commit
f0ec9b134a
@ -1427,7 +1427,7 @@
|
|||||||
@ cdecl strerror(long) MSVCRT_strerror
|
@ cdecl strerror(long) MSVCRT_strerror
|
||||||
@ cdecl strerror_s(ptr long long)
|
@ cdecl strerror_s(ptr long long)
|
||||||
@ cdecl strftime(str long str ptr) MSVCRT_strftime
|
@ cdecl strftime(str long str ptr) MSVCRT_strftime
|
||||||
@ cdecl strlen(str) ntdll.strlen
|
@ cdecl strlen(str) MSVCRT_strlen
|
||||||
@ cdecl strncat(str str long) ntdll.strncat
|
@ cdecl strncat(str str long) ntdll.strncat
|
||||||
@ cdecl strncat_s(str long str long) MSVCRT_strncat_s
|
@ cdecl strncat_s(str long str long) MSVCRT_strncat_s
|
||||||
@ cdecl strncmp(str str long) MSVCRT_strncmp
|
@ cdecl strncmp(str str long) MSVCRT_strncmp
|
||||||
|
@ -781,6 +781,14 @@ MSVCRT_ulong CDECL MSVCRT_strtoul(const char* nptr, char** end, int base)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
* strlen (MSVCRT.@)
|
||||||
|
*/
|
||||||
|
MSVCRT_size_t __cdecl MSVCRT_strlen(const char *str)
|
||||||
|
{
|
||||||
|
return strlen(str);
|
||||||
|
}
|
||||||
|
|
||||||
/******************************************************************
|
/******************************************************************
|
||||||
* strnlen (MSVCRT.@)
|
* strnlen (MSVCRT.@)
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user