msvcrt: Don't forward strchr to ntdll.

This commit is contained in:
Piotr Caban 2013-03-27 16:12:09 +01:00 committed by Alexandre Julliard
parent 1278080901
commit bf237452ef
2 changed files with 9 additions and 1 deletions

View File

@ -1411,7 +1411,7 @@
@ varargs sscanf_s(str str) MSVCRT_sscanf_s
@ cdecl strcat(str str) ntdll.strcat
@ cdecl strcat_s(str long str) MSVCRT_strcat_s
@ cdecl strchr(str long) ntdll.strchr
@ cdecl strchr(str long) MSVCRT_strchr
@ cdecl strcmp(str str) ntdll.strcmp
@ cdecl strcoll(str str) MSVCRT_strcoll
@ cdecl strcpy(ptr str) ntdll.strcpy

View File

@ -1574,6 +1574,14 @@ void* __cdecl MSVCRT_memset(void *dst, int c, MSVCRT_size_t n)
return memset(dst, c, n);
}
/*********************************************************************
* strchr (MSVCRT.@)
*/
char* __cdecl MSVCRT_strchr(const char *str, int c)
{
return strchr(str, c);
}
/*********************************************************************
* _strnicmp_l (MSVCRT.@)
*/