1WCSCHR(3)                  Linux Programmer's Manual                 WCSCHR(3)
2
3
4

NAME

6       wcschr - search a wide character in a wide-character string
7

SYNOPSIS

9       #include <wchar.h>
10
11       wchar_t *wcschr(const wchar_t *wcs, wchar_t wc);
12

DESCRIPTION

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

RETURN VALUE

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

ATTRIBUTES

24       For   an   explanation   of   the  terms  used  in  this  section,  see
25       attributes(7).
26
27       ┌──────────┬───────────────┬─────────┐
28Interface Attribute     Value   
29       ├──────────┼───────────────┼─────────┤
30wcschr()  │ Thread safety │ MT-Safe │
31       └──────────┴───────────────┴─────────┘

CONFORMING TO

33       POSIX.1-2001, POSIX.1-2008, C99.
34

SEE ALSO

36       strchr(3), wcspbrk(3), wcsrchr(3), wcsstr(3), wmemchr(3)
37

COLOPHON

39       This page is part of release 4.15 of the Linux  man-pages  project.   A
40       description  of  the project, information about reporting bugs, and the
41       latest    version    of    this    page,    can     be     found     at
42       https://www.kernel.org/doc/man-pages/.
43
44
45
46GNU                               2015-08-08                         WCSCHR(3)
Impressum