msvcrt: Indentation fix.

This commit is contained in:
Andrew Talbot 2012-12-17 22:12:14 +00:00 committed by Alexandre Julliard
parent 1cd0c4abd6
commit 4c191378e9
1 changed files with 8 additions and 7 deletions

View File

@ -1019,13 +1019,14 @@ int CDECL MSVCRT_wcscoll( const MSVCRT_wchar_t* str1, const MSVCRT_wchar_t* str2
*/
MSVCRT_wchar_t* CDECL MSVCRT_wcspbrk( const MSVCRT_wchar_t* str, const MSVCRT_wchar_t* accept )
{
const MSVCRT_wchar_t* p;
while (*str)
{
for (p = accept; *p; p++) if (*p == *str) return (MSVCRT_wchar_t*)str;
str++;
}
return NULL;
const MSVCRT_wchar_t* p;
while (*str)
{
for (p = accept; *p; p++) if (*p == *str) return (MSVCRT_wchar_t*)str;
str++;
}
return NULL;
}
/*********************************************************************