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(3)
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
30 This page is part of release 3.25 of the Linux man-pages project. A
31 description of the project, and information about reporting bugs, can
32 be found at http://www.kernel.org/doc/man-pages/.
33
34
35
36GNU 1999-07-25 WCSCHR(3)