wmemchr function — Searches for a wide character
const wchar_t* wmemchr(const wchar_t* mem, wchar_t c, size_t n) wchar_t* wmemchr( wchar_t* mem, wchar_t c, size_t n)
The wmemchr
function
searches the memory that mem
points to, of size n
wide
characters, for the wide character whose value is c
. The return value is a pointer in the
mem
array that points to the
first occurrence of c
, or a null
pointer if c
is not present in
the first n
wide characters of
mem
.