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

ATTRIBUTES

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

CONFORMING TO

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

SEE ALSO

37       strrchr(3), wcschr(3)
38

COLOPHON

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