diff options
author | Girish Joshi <girish946@gmail.com> | 2020-03-05 09:31:43 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2020-03-05 09:31:43 +0100 |
commit | f801cf7bb146f9dd7b5e124e752c54194698e132 (patch) | |
tree | 44a1d05ef0b7d5035e98b88fea7a41cd50a3b619 /manual | |
parent | 72bcc9ade00732b5b0ea0e855cc017364aea20df (diff) | |
download | glibc-f801cf7bb146f9dd7b5e124e752c54194698e132.tar glibc-f801cf7bb146f9dd7b5e124e752c54194698e132.tar.gz glibc-f801cf7bb146f9dd7b5e124e752c54194698e132.tar.bz2 glibc-f801cf7bb146f9dd7b5e124e752c54194698e132.zip |
manual: Fix wrong declaration of wcschr [BZ #24654]
Diffstat (limited to 'manual')
-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 a1c58e58fa..c39c732ce4 100644 --- a/manual/string.texi +++ b/manual/string.texi @@ -1778,7 +1778,7 @@ need that information, it is better (but less portable) to use @code{strchrnul} than to search for it a second time. @end deftypefun -@deftypefun {wchar_t *} wcschr (const wchar_t *@var{wstring}, int @var{wc}) +@deftypefun {wchar_t *} wcschr (const wchar_t *@var{wstring}, wchar_t @var{wc}) @standards{ISO, wchar.h} @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}} The @code{wcschr} function finds the first occurrence of the wide |