 |
Index for Section 3 |
|
 |
Alphabetical listing for W |
|
 |
Bottom of page |
|
wcspbrk(3)
NAME
wcspbrk - Locate the first occurrence of a wide character in a wide-
character string
SYNOPSIS
#include <wchar.h>
wchar_t *wcspbrk(
const wchar_t *wcs1,
const wchar_t *wcs2 );
LIBRARY
Standard C Library (libc)
STANDARDS
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.
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.
SEE ALSO
Functions: strpbrk(3), wcsstr(3), wcswcs(3)
Standards: standards(5)
 |
Index for Section 3 |
|
 |
Alphabetical listing for W |
|
 |
Top of page |
|