Index of Section 3 Manual Pages
| Interix / SUA | wcsrchr.3 | Interix / SUA |
wcsrchr(3) wcsrchr(3)
wcsrchr()
NAME
wcsrchr() - locate wide-characters in string
SYNOPSIS
#include
char * wcsrchr (const wchar_t *ws, wchar_t wc)
DESCRIPTION
The wcsrchr(3) function locates the last occurrence of wide-character code
wc in the wide-character string ws. If wc is \0, wcsrchr(3) locates the
terminating \0.
RETURN VALUES
The wcsrchr(3) function returns a pointer to the wide-character, or a null
pointer if wc does not occur anywhere in ws.
SEE ALSO
memchr(3)
wcschr(3)
wcscspn(3)
wcspbrk(3)
wcssep(3)
wcsspn(3)
wcsstr(3)
wcstok(3)
USAGE NOTES
The wcsrchr function is thread safe.
The wcsrchr function is not async-signal safe.