]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man3/wcsrchr.3
Wrapped long lines, wrapped at sentence boundaries; stripped trailing
[thirdparty/man-pages.git] / man3 / wcsrchr.3
1 .\" Copyright (c) Bruno Haible <haible@clisp.cons.org>
2 .\"
3 .\" This is free documentation; you can redistribute it and/or
4 .\" modify it under the terms of the GNU General Public License as
5 .\" published by the Free Software Foundation; either version 2 of
6 .\" the License, or (at your option) any later version.
7 .\"
8 .\" References consulted:
9 .\" GNU glibc-2 source code and manual
10 .\" Dinkumware C library reference http://www.dinkumware.com/
11 .\" OpenGroup's Single Unix specification http://www.UNIX-systems.org/online.html
12 .\" ISO/IEC 9899:1999
13 .\"
14 .TH WCSRCHR 3 1999-07-25 "GNU" "Linux Programmer's Manual"
15 .SH NAME
16 wcsrchr \- search a wide character in a wide-character string
17 .SH SYNOPSIS
18 .nf
19 .B #include <wchar.h>
20 .sp
21 .BI "wchar_t *wcsrchr(const wchar_t *" wcs ", wchar_t " wc );
22 .fi
23 .SH DESCRIPTION
24 The \fBwcsrchr\fP() function is the wide-character equivalent
25 of the \fBstrrchr\fP() function.
26 It searches the last occurrence of \fIwc\fP in the wide-character
27 string pointed to by \fIwcs\fP.
28 .SH "RETURN VALUE"
29 The \fBwcsrchr\fP() function returns a pointer to the last occurrence of
30 \fIwc\fP in the wide-character string pointed to by \fIwcs\fP, or NULL if
31 \fIwc\fP does not occur in the string.
32 .SH "CONFORMING TO"
33 C99.
34 .SH "SEE ALSO"
35 .BR strrchr (3),
36 .BR wcschr (3)