wcspbrk(3) — Subroutines
NAME
wcspbrk − Locates the first occurrence of a wide character in a wide-character string
LIBRARY
Standard C Library (libc.a)
SYNOPSIS
#include <wchar.h>
wchar_t ∗wcspbrk(
const wchar_t ∗wcs1,
const wchar_t ∗wcs2);
PARAMETERS
wcs1Pointer to the string being searched.
wcs2Pointer 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 the null pointer if no wide character from the wcs2 parameter occurs in the wcs1 parameter.
RELATED INFORMATION
Functions: strpbrk(3), wcswcs(3).