diff --git a/docs/strings/strzcpy.ms b/docs/strings/strzcpy.ms new file mode 100644 index 0000000..147d172 --- /dev/null +++ b/docs/strings/strzcpy.ms @@ -0,0 +1,25 @@ +.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.