1WCSSTR(3P) POSIX Programmer's Manual WCSSTR(3P)
2
3
4
6 This manual page is part of the POSIX Programmer's Manual. The Linux
7 implementation of this interface may differ (consult the corresponding
8 Linux manual page for details of Linux behavior), or the interface may
9 not be implemented on Linux.
10
12 wcsstr - find a wide-character substring
13
15 #include <wchar.h>
16
17 wchar_t *wcsstr(const wchar_t *restrict ws1,
18 const wchar_t *restrict ws2);
19
20
22 The wcsstr() function shall locate the first occurrence in the wide-
23 character string pointed to by ws1 of the sequence of wide characters
24 (excluding the terminating null wide character) in the wide-character
25 string pointed to by ws2.
26
28 Upon successful completion, wcsstr() shall return a pointer to the
29 located wide-character string, or a null pointer if the wide-character
30 string is not found.
31
32 If ws2 points to a wide-character string with zero length, the function
33 shall return ws1.
34
36 No errors are defined.
37
38 The following sections are informative.
39
41 None.
42
44 None.
45
47 None.
48
50 None.
51
53 wcschr(), the Base Definitions volume of IEEE Std 1003.1-2001,
54 <wchar.h>
55
57 Portions of this text are reprinted and reproduced in electronic form
58 from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
59 -- Portable Operating System Interface (POSIX), The Open Group Base
60 Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of
61 Electrical and Electronics Engineers, Inc and The Open Group. In the
62 event of any discrepancy between this version and the original IEEE and
63 The Open Group Standard, the original IEEE and The Open Group Standard
64 is the referee document. The original Standard can be obtained online
65 at http://www.opengroup.org/unix/online.html .
66
67
68
69IEEE/The Open Group 2003 WCSSTR(3P)