diff options
author | Girish Joshi <girish946@gmail.com> | 2020-03-07 01:17:01 +0530 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2020-03-13 17:45:04 -0400 |
commit | 4315f45c930c9d4f2beb3aeec859e4d6cf02c918 (patch) | |
tree | 01848bada49ab9033e8bd77a1d270519731413c2 | |
parent | dcf46d3fe5ad8e93f25ad90771484aa22c2ca4fc (diff) | |
download | glibc-4315f45c930c9d4f2beb3aeec859e4d6cf02c918.tar.gz glibc-4315f45c930c9d4f2beb3aeec859e4d6cf02c918.tar.xz glibc-4315f45c930c9d4f2beb3aeec859e4d6cf02c918.zip |
manual: Fix inconsistent declaration of wcsrchr [BZ #24655]
Reviewed-by: DJ Delorie <dj@redhat.com>
-rw-r--r-- | manual/string.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/string.texi b/manual/string.texi index c39c732ce4..23f516439a 100644 --- a/manual/string.texi +++ b/manual/string.texi @@ -1852,7 +1852,7 @@ strrchr ("hello, world", 'l') @end smallexample @end deftypefun -@deftypefun {wchar_t *} wcsrchr (const wchar_t *@var{wstring}, wchar_t @var{c}) +@deftypefun {wchar_t *} wcsrchr (const wchar_t *@var{wstring}, wchar_t @var{wc}) @standards{ISO, wchar.h} @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}} The function @code{wcsrchr} is like @code{wcschr}, except that it searches |