StrPBrkW function (shlwapi.h)

Searches a string for the first occurrence of a character contained in a specified buffer. This search does not include the terminating null character.

Syntax

PCWSTR StrPBrkW(
  [in] PCWSTR psz,
  [in] PCWSTR pszSet
);

Parameters

[in] psz

Type: PTSTR

A pointer to the null-terminated string to be searched.

[in] pszSet

Type: PCTSTR

A pointer to a null-terminated character buffer that contains the characters for which to search.

Return value

Type: PTSTR

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.

Remarks

Note

The shlwapi.h header defines StrPBrk as an alias which automatically selects the ANSI or Unicode version of this function based on the definition of the UNICODE preprocessor constant. Mixing usage of the encoding-neutral alias with code that not encoding-neutral can lead to mismatches that result in compilation or runtime errors. For more information, see Conventions for Function Prototypes.

Requirements

Requirement Value
Minimum supported client Windows 2000 Professional, Windows XP [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Target Platform Windows
Header shlwapi.h
Library Shlwapi.lib
DLL Shlwapi.dll (version 4.71 or later)