wcsrchr.c

The libc implementation

Author

Marcel Sondaar

License

Public Domain

Summary
wcsrchr.cThe libc implementation
Functions
wcsrchrFinds the last character in s that matches c

Functions

wcsrchr

wchar_t * wcsrchr(const wchar_t *s,
wchar_t c)

Finds the last character in s that matches c

Returns a pointer to the last character in s1 that matches c

Returns NULL if c does not occur in s

wchar_t * wcsrchr(const wchar_t *s,
wchar_t c)
Finds the last character in s that matches c