1WCSPBRK(3)                 Linux Programmer's Manual                WCSPBRK(3)
2
3
4

NAME

6       wcspbrk - search a wide-character string for any of a set of wide char‐
7       acters
8

SYNOPSIS

10       #include <wchar.h>
11
12       wchar_t *wcspbrk(const wchar_t *wcs, const wchar_t *accept);
13

DESCRIPTION

15       The wcspbrk() function is the wide-character equivalent  of  the  strp‐
16       brk(3)  function.   It  searches  for the first occurrence in the wide-
17       character string pointed to by wcs of any  of  the  characters  in  the
18       wide-character string pointed to by accept.
19

RETURN VALUE

21       The wcspbrk() function returns a pointer to the first occurrence in wcs
22       of any of the characters listed in accept.  If  wcs  contains  none  of
23       these characters, NULL is returned.
24

CONFORMING TO

26       C99.
27

SEE ALSO

29       strpbrk(3), wcschr(3), wcscspn(3)
30

COLOPHON

32       This  page  is  part of release 3.53 of the Linux man-pages project.  A
33       description of the project, and information about reporting  bugs,  can
34       be found at http://www.kernel.org/doc/man-pages/.
35
36
37
38GNU                               1999-07-25                        WCSPBRK(3)
Impressum