1WCSRCHR(3) Linux Programmer's Manual WCSRCHR(3)
2
3
4
6 wcsrchr - search a wide character in a wide-character string
7
9 #include <wchar.h>
10
11 wchar_t *wcsrchr(const wchar_t *wcs, wchar_t wc);
12
14 The wcsrchr() function is the wide-character equivalent of the str‐
15 rchr() function. It searches the last occurrence of wc in the wide-
16 character string pointed to by wcs.
17
19 The wcsrchr() function returns a pointer to the last occurrence of wc
20 in the wide-character string pointed to by wcs, or NULL if wc does not
21 occur in the string.
22
24 C99.
25
27 strrchr(3), wcschr(3)
28
29
30
31GNU 1999-07-25 WCSRCHR(3)