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

NAME

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

SYNOPSIS

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

DESCRIPTION

14       The  wcsrchr()  function  is  the wide-character equivalent of the str‐
15       rchr(3) function.  It searches the last occurrence of wc in  the  wide-
16       character string pointed to by wcs.
17

RETURN VALUE

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

CONFORMING TO

24       C99.
25

SEE ALSO

27       strrchr(3), wcschr(3)
28

COLOPHON

30       This  page  is  part of release 3.53 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                        WCSRCHR(3)
Impressum