Added strpbrkW - I am going to need it for comdlg32 coming this week.

svn path=/trunk/; revision=7451
This commit is contained in:
Steven Edwards 2004-01-04 20:22:02 +00:00
parent 3073e11cf8
commit fc05db5095

View file

@ -81,4 +81,10 @@ static inline unsigned short get_char_typeW( wchar_t ch )
return wine_wctype_table[wine_wctype_table[ch >> 8] + (ch & 0xff)];
}
static inline WCHAR *strpbrkW( const WCHAR *str, const WCHAR *accept )
{
for ( ; *str; str++) if (strchrW( accept, *str )) return (WCHAR *)str;
return NULL;
}
#endif