Commit f2cb86de authored by Alexandre Julliard's avatar Alexandre Julliard

ntoskrnl: Add prefixes on all C runtime functions.

parent e626524e
......@@ -3342,7 +3342,10 @@ void * __cdecl NTOSKRNL_memset( void *dst, int c, size_t n )
return memset( dst, c, n );
}
int __cdecl _stricmp( LPCSTR str1, LPCSTR str2 )
/*********************************************************************
* _stricmp (NTOSKRNL.@)
*/
int __cdecl NTOSKRNL__stricmp( LPCSTR str1, LPCSTR str2 )
{
return strcasecmp( str1, str2 );
}
......@@ -3350,7 +3353,7 @@ int __cdecl _stricmp( LPCSTR str1, LPCSTR str2 )
/*********************************************************************
* _strnicmp (NTOSKRNL.@)
*/
int __cdecl _strnicmp( LPCSTR str1, LPCSTR str2, size_t n )
int __cdecl NTOSKRNL__strnicmp( LPCSTR str1, LPCSTR str2, size_t n )
{
return strncasecmp( str1, str2, n );
}
......
......@@ -1426,9 +1426,9 @@
@ cdecl -private _purecall() msvcrt._purecall
@ varargs -private _snprintf(ptr long str) msvcrt._snprintf
@ varargs -private _snwprintf(ptr long wstr) msvcrt._snwprintf
@ cdecl -private _stricmp(str str)
@ cdecl -private _stricmp(str str) NTOSKRNL__stricmp
@ cdecl -private _strlwr(str) msvcrt._strlwr
@ cdecl -private _strnicmp(str str long) _strnicmp
@ cdecl -private _strnicmp(str str long) NTOSKRNL__strnicmp
@ cdecl -private _strnset(str long long) msvcrt._strnset
@ cdecl -private _strrev(str) msvcrt._strrev
@ cdecl -private _strset(str long) msvcrt._strset
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment