Everything

wcschr


Searches a specified string for the first occurrence of a specified character.

[Format]

#include <wchar.h>

wchar_t *wcschr(const wchar_t *s, wchar_t c);

[Parameters]

s Pointer to the string to be searched

c Character to search for

[Return values]

If the character is found: Pointer to the found character

If the character is not found: NULL

[Remarks]

The wcschr function is the wide-character version of the strchr function.