Contents Index Topic Contents | ||
Previous Topic: StrNCat Next Topic: StrRChr |
StrPBrk
LPTSTR StrPBrk( LPCTSTR psz, LPCTSTR pszSet );Searches a string for the first occurrence of a character contained in a specified buffer. This search does not include the null terminator.
- Returns the address in psz of the first occurrence of a character contained in the buffer at pszSet, or NULL if no match is found.
- psz
- Address of the string to be searched.
- pszSet
- Address of a null-terminated character buffer that contains the characters for which to search.
Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.