1WCSPBRK(3) Linux Programmer's Manual WCSPBRK(3)
2
3
4
6 wcspbrk - search a wide-character string for any of a set of wide char‐
7 acters
8
10 #include <wchar.h>
11
12 wchar_t *wcspbrk(const wchar_t *wcs, const wchar_t *accept);
13
15 The wcspbrk() function is the wide-character equivalent of the strp‐
16 brk() function. It searches for the first occurrence in the wide-char‐
17 acter string pointed to by wcs of any of the characters in the wide-
18 character string pointed to by accept.
19
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
26 C99.
27
29 strpbrk(3), wcschr(3), wcscspn(3)
30
31
32
33GNU 1999-07-25 WCSPBRK(3)