]> git.ipfire.org Git - thirdparty/man-pages.git/commitdiff
bstring.3: bzero(3) is not deprecated in my book
authorAlejandro Colomar <alx@kernel.org>
Fri, 30 Dec 2022 23:02:24 +0000 (00:02 +0100)
committerAlejandro Colomar <alx@kernel.org>
Fri, 30 Dec 2022 23:02:34 +0000 (00:02 +0100)
It is technically superior to memset(3) in every way.

Signed-off-by: Alejandro Colomar <alx@kernel.org>
man3/bstring.3

index 6a11bfa5f5943e07f696d60905b3c4cc804d2e69..01313b48f577194bf5777dcc0219a23ca6f55f49 100644 (file)
@@ -51,16 +51,14 @@ See the individual man pages
 for descriptions of each function.
 .SH NOTES
 The functions
-.BR bcmp (),
-.BR bcopy (),
+.BR bcmp ()
 and
-.BR bzero ()
+.BR bcopy ()
 are obsolete.
 Use
-.BR memcmp (),
-.BR memcpy (),
+.BR memcmp ()
 and
-.BR memset ()
+.BR memcpy ()
 instead.
 .\" The old functions are not even available on some non-GNU/Linux systems.
 .SH SEE ALSO