1WCSCHR(3) Linux Programmer's Manual WCSCHR(3)
2
3
4
6 wcschr - search a wide character in a wide-character string
7
9 #include <wchar.h>
10
11 wchar_t *wcschr(const wchar_t *wcs, wchar_t wc);
12
14 The wcschr() function is the wide-character equivalent of the strchr()
15 function. It searches the first occurrence of wc in the wide-character
16 string pointed to by wcs.
17
19 The wcschr() function returns a pointer to the first 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 strchr(3), wcspbrk(3), wcsrchr(3), wcsstr(3), wmemchr(3)
28
29
30
31GNU 1999-07-25 WCSCHR(3)