Everything

wmemchr


Searches a specified storage area for the first occurrence of a specified character.

[Format]

#include <wchar.h>

wchar_t *wmemchr(const wchar_t *s, wchar_t c, size_t n);

[Parameters]

s Pointer to the storage area to be searched

c Character to search for

n Number of characters to search

[Return values]

If the character is found: Pointer to the found character

If the character is not found: NULL

[Remarks]

The wmemchr function is the wide-character version of the memchr function.