1
0
C_lib/docs/strings/strzcpy.ms
2021-09-06 19:14:01 +03:00

26 lines
479 B
Plaintext

.DA
.TL
strzcpy
.AU
Wael Karram
.AB no
Documentation for strzcpy
.AE
.ND
.PP
The header and implementation file both define a safe string copying function.
.br
This function takes three arguments:
.I "char *restrict dst" ,
.I "const char *restrict src" \0and
.I "size_t len" ,
the first of which is the destination buffer (should have enough space), the second a source buffer,
and the third a maximal length to copy.
.br
Will always produce a null-terminated string copy.