summaryrefslogtreecommitdiff
path: root/src/lib/libc/string/bstring.3
diff options
context:
space:
mode:
authorschwarze <>2011-07-25 00:38:53 +0000
committerschwarze <>2011-07-25 00:38:53 +0000
commit339c056f856313e215baab8ddc4bc0ce064b4571 (patch)
tree7c0511efd76ae46bc18c0955627ddf69509014c6 /src/lib/libc/string/bstring.3
parent3ad0ccfe078fe407c711a9d1fb21b9b79aa67f2c (diff)
downloadopenbsd-339c056f856313e215baab8ddc4bc0ce064b4571.tar.gz
openbsd-339c056f856313e215baab8ddc4bc0ce064b4571.tar.bz2
openbsd-339c056f856313e215baab8ddc4bc0ce064b4571.zip
update HISTORY and SEE ALSO for all of string(3), together with various
smaller improvements; jmc@ and nicm@ both ask me to get this in because further tweaking will be easier in-tree
Diffstat (limited to 'src/lib/libc/string/bstring.3')
-rw-r--r--src/lib/libc/string/bstring.330
1 files changed, 20 insertions, 10 deletions
diff --git a/src/lib/libc/string/bstring.3 b/src/lib/libc/string/bstring.3
index cd16ab022d..c44c5386c6 100644
--- a/src/lib/libc/string/bstring.3
+++ b/src/lib/libc/string/bstring.3
@@ -27,9 +27,9 @@
27.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28.\" SUCH DAMAGE. 28.\" SUCH DAMAGE.
29.\" 29.\"
30.\" $OpenBSD: bstring.3,v 1.8 2007/05/31 19:19:32 jmc Exp $ 30.\" $OpenBSD: bstring.3,v 1.9 2011/07/25 00:38:52 schwarze Exp $
31.\" 31.\"
32.Dd $Mdocdate: May 31 2007 $ 32.Dd $Mdocdate: July 25 2011 $
33.Dt BSTRING 3 33.Dt BSTRING 3
34.Os 34.Os
35.Sh NAME 35.Sh NAME
@@ -85,14 +85,24 @@ conform to
85.St -ansiC . 85.St -ansiC .
86.Sh HISTORY 86.Sh HISTORY
87The 87The
88.Fn bzero 88.Fn bcmp ,
89.Fn bcopy ,
89and 90and
90.Fn memccpy 91.Fn bzero
91functions appeared in 92functions first appeared in
92.Bx 4.3 . 93.Bx 4.2 .
93The 94The
94.Fn bcmp 95.Fn memchr ,
96.Fn memcmp ,
97.Fn memccpy ,
98.Fn memcpy ,
95and 99and
96.Fn bcopy 100.Fn memset
97functions appeared in 101functions first appeared in
98.Bx 4.2 . 102.At V
103and were reimplemented for
104.Bx 4.3 Tahoe .
105The
106.Fn memmove
107function first appeared in
108.Bx 4.3 Reno .