mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 01:55:39 +00:00
Added strpbrkW - I am going to need it for comdlg32 coming this week.
svn path=/trunk/; revision=7451
This commit is contained in:
parent
3073e11cf8
commit
fc05db5095
1 changed files with 6 additions and 0 deletions
|
@ -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)];
|
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
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue