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

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

.../glibc$ grep_glibc_prototype strcpy
string/string.h:125:
extern char *strcpy (char *__restrict __dest, const char *__restrict __src)
     __THROW __nonnull ((1, 2));
.../glibc$ grep_glibc_prototype strncpy
string/string.h:128:
extern char *strncpy (char *__restrict __dest,
		      const char *__restrict __src, size_t __n)
     __THROW __nonnull ((1, 2));
.../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-10 19:31:38 +01:00 committed by Michael Kerrisk
parent e4f4e683e5
commit 168fd1184e
1 changed files with 3 additions and 2 deletions

View File

@ -39,8 +39,9 @@ strcpy, strncpy \- copy a string
.nf
.B #include <string.h>
.PP
.BI "char *strcpy(char *" dest ", const char *" src );
.BI "char *strncpy(char *" dest ", const char *" src ", size_t " n );
.BI "char *strcpy(char *restrict " dest ", const char *" src );
.BI "char *strncpy(char *restrict " dest ", const char *restrict " src \
", size_t " n );
.fi
.SH DESCRIPTION
The