wcsrtombs.3: SYNOPSIS: Use 'restrict' in prototypes

Both POSIX and glibc use 'restrict' in wcsrtombs().
Let's use it here too.

.../glibc$ grep_glibc_prototype wcsrtombs
wcsmbs/wchar.h:343:
extern size_t wcsrtombs (char *__restrict __dst,
			 const wchar_t **__restrict __src, size_t __len,
			 mbstate_t *__restrict __ps) __THROW;
.../glibc$

Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Alejandro Colomar 2021-03-11 23:33:25 +01:00 committed by Michael Kerrisk
parent c37f316d8e
commit 6b3c959f92
1 changed files with 2 additions and 2 deletions

View File

@ -20,8 +20,8 @@ wcsrtombs \- convert a wide-character string to a multibyte string
.nf
.B #include <wchar.h>
.PP
.BI "size_t wcsrtombs(char *" dest ", const wchar_t **" src ,
.BI " size_t " len ", mbstate_t *" ps );
.BI "size_t wcsrtombs(char *restrict " dest ", const wchar_t **restrict " src ,
.BI " size_t " len ", mbstate_t *restrict " ps );
.fi
.SH DESCRIPTION
If