| Click this button to go to the index for this section. |
wcspbrk(3)
NAME
wcspbrk - Locates the first occurrence of a wide character in a wide- character stringLIBRARY
Standard C Library (libc.so, libc.a)SYNOPSIS
#include <wchar.h> wchar_t *wcspbrk( const wchar_t *wcs1, const wchar_t *wcs2);STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: wcspbrk(): ISO C, XPG4 Refer to the standards(5) reference page for more information about industry standards and associated tags.PARAMETERS
wcs1 Points to the string being searched. wcs2 Points to a string containing a set of wide characters.DESCRIPTION
The wcspbrk() function locates the first occurrence in the string pointed to by the wcs1 parameter of any wide character from the string pointed to by the wcs2 parameter.RETURN VALUES
The wcspbrk() function returns a pointer to the wide character or, if no wide character from the wcs2 parameter occurs in the wcs1 parameter, a null pointer.RELATED INFORMATION
Functions: strpbrk(3), wcsstr(3), wcswcs(3) Standards: standards(5)