wcspbrk()

locate any of a set of characters in wide character string 

Function


SYNOPSIS

#include <wchar.h>

wchar_t *wcspbrk(const wchar_t *ws1, const wchar_t *ws2);


DESCRIPTION

The wcspbrk() function is used to scan a wide character string for characters in a specified character set.


PARAMETERS

ws1 

Is the null-terminated string to be searched.

ws2 

Is a null-terminating string consisting of characters to search for.


RETURN VALUES

The wcspbrk() function returns a pointer to the first occurrence of any character in ws1 that matches a character in ws2. If there are no characters in common between ws1 and ws2, then a NULL string is returned.


CONFORMANCE

ANSI/ISO 9899-1990/AM 1-1995.


MULTITHREAD SAFETY LEVEL

MT-Safe.


PORTING ISSUES

None.


AVAILABILITY

PTC MKS Toolkit for Professional Developers
PTC MKS Toolkit for Professional Developers 64-Bit Edition
PTC MKS Toolkit for Enterprise Developers
PTC MKS Toolkit for Enterprise Developers 64-Bit Edition


SEE ALSO

Functions:
wcschr(), wcscspn(), wcsrchr()


PTC MKS Toolkit 10.4 Documentation Build 39.