1WCSPBRK(P) POSIX Programmer's Manual WCSPBRK(P)
2
3
4
6 wcspbrk - scan a wide-character string for a wide-character code
7
9 #include <wchar.h>
10
11 wchar_t *wcspbrk(const wchar_t *ws1, const wchar_t *ws2);
12
13
15 The wcspbrk() function shall locate the first occurrence in the wide-
16 character string pointed to by ws1 of any wide-character code from the
17 wide-character string pointed to by ws2.
18
20 Upon successful completion, wcspbrk() shall return a pointer to the
21 wide-character code or a null pointer if no wide-character code from
22 ws2 occurs in ws1.
23
25 No errors are defined.
26
27 The following sections are informative.
28
30 None.
31
33 None.
34
36 None.
37
39 None.
40
42 wcschr() , wcsrchr() , the Base Definitions volume of
43 IEEE Std 1003.1-2001, <wchar.h>
44
46 Portions of this text are reprinted and reproduced in electronic form
47 from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
48 -- Portable Operating System Interface (POSIX), The Open Group Base
49 Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of
50 Electrical and Electronics Engineers, Inc and The Open Group. In the
51 event of any discrepancy between this version and the original IEEE and
52 The Open Group Standard, the original IEEE and The Open Group Standard
53 is the referee document. The original Standard can be obtained online
54 at http://www.opengroup.org/unix/online.html .
55
56
57
58IEEE/The Open Group 2003 WCSPBRK(P)