wcspbrk - Locate the first occurrence of a wide character
in a wide-character string
#include <wchar.h>
wchar_t *wcspbrk(
const wchar_t *wcs1,
const wchar_t *wcs2 );
Standard C Library (libc)
Interfaces documented on this reference page conform to
industry standards as follows:
wcspbrk(): XSH5.0
Refer to the standards(5) reference page for more information
about industry standards and associated tags.
Points to the string being searched. Points to a string
containing a set of wide characters.
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.
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.
Functions: strpbrk(3), wcsstr(3), wcswcs(3)
Standards: standards(5)
wcspbrk(3)
[ Back ] |