OSDN Git Service

Update README
[linuxjm/LDP_man-pages.git] / original / man3 / bstring.3
index ea6298b..6049235 100644 (file)
@@ -1,5 +1,6 @@
 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
 .\"
+.\" %%%LICENSE_START(VERBATIM)
 .\" Permission is granted to make and distribute verbatim copies of this
 .\" manual provided the copyright notice and this permission notice are
 .\" preserved on all copies.
@@ -19,6 +20,7 @@
 .\"
 .\" Formatted or processed versions of this manual, if unaccompanied by
 .\" the source, must acknowledge the copyright and authors of this work.
+.\" %%%LICENSE_END
 .\"
 .\" References consulted:
 .\"     Linux libc source code
@@ -27,7 +29,7 @@
 .\" Modified 1993-04-12, David Metcalfe
 .\" Modified 1993-07-24, Rik Faith (faith@cs.unc.edu)
 .\" Modified 2002-01-20, Walter Harms
-.TH BSTRING 3  2002-01-20 "" "Linux Programmer's Manual"
+.TH BSTRING 3  2014-05-28 "" "Linux Programmer's Manual"
 .SH NAME
 bcmp, bcopy, bzero, memccpy, memchr, memcmp, memcpy, memfrob, memmem,
 memmove, memset \- byte string operations
@@ -35,11 +37,11 @@ memmove, memset \- byte string operations
 .nf
 .B #include <string.h>
 .sp
-.BI "int bcmp(const void *" s1 ", const void *" s2 ", int " n );
+.BI "int bcmp(const void *" s1 ", const void *" s2 ", size_t " n );
 .sp
-.BI "void bcopy(const void *" src ", void *" dest ", int " n );
+.BI "void bcopy(const void *" src ", void *" dest ", size_t " n );
 .sp
-.BI "void bzero(void *" s ", int " n );
+.BI "void bzero(void *" s ", size_t " n );
 .sp
 .BI "void *memccpy(void *" dest ", const void *" src ", int " c ", size_t " n );
 .sp
@@ -77,7 +79,7 @@ and
 .BR memset ()
 instead.
 .\" The old functions are not even available on some non-GNU/Linux systems.
-.SH "SEE ALSO"
+.SH SEE ALSO
 .BR bcmp (3),
 .BR bcopy (3),
 .BR bzero (3),
@@ -89,3 +91,12 @@ instead.
 .BR memmem (3),
 .BR memmove (3),
 .BR memset (3)
+.SH COLOPHON
+This page is part of release 3.79 of the Linux
+.I man-pages
+project.
+A description of the project,
+information about reporting bugs,
+and the latest version of this page,
+can be found at
+\%http://www.kernel.org/doc/man\-pages/.