wcsstr(3C) wcsstr(3C)
NAME
wcsstr, wcswcs - find wide substring
SYNOPSIS
#include <wchar.h>
wchar_t *wcsstr(const wchar_t *ws1, const wchar_t *ws2);
DESCRIPTION
wcsstr locates the first occurrence in the wide character
string pointed to by ws1 of the sequence of wide characters
(excluding the terminating null wide character) pointed to by
ws2.
Return Values
Upon successful completion, wcsstr returns a pointer to the
located wide character string, or a null pointer if the wide
character string is not found.
wcsstr returns ws1 if ws2 points to a zero-length wide
character string.
REFERENCES
wchar(5), wcschr(3C)
NOTICES
If the feature test macro _XOPEN_SOURCE is defined then the
following synopsis is available with equivalent behavior:
wchar_t *wcswcs(const wchar_t *ws1, const wchar_t *ws2);
Copyright 1994 Novell, Inc. Page 1