1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-25 16:13:17 +00:00

The type and name of sbuf_b{cat,cpy}()'s second argument have changed.

This commit is contained in:
Dag-Erling Smørgrav 2004-07-09 11:38:59 +00:00
parent 520df27692
commit 4aa90de352
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=131870

View File

@ -59,11 +59,11 @@
.Ft int
.Fn sbuf_setpos "struct sbuf *s" "int pos"
.Ft int
.Fn sbuf_bcat "struct sbuf *s" "const char *str" "size_t len"
.Fn sbuf_bcat "struct sbuf *s" "const void *buf" "size_t len"
.Ft int
.Fn sbuf_bcopyin "struct sbuf *s" "const void *uaddr" "size_t len"
.Ft int
.Fn sbuf_bcpy "struct sbuf *s" "const char *str" "size_t len"
.Fn sbuf_bcpy "struct sbuf *s" "const void *buf" "size_t len"
.Ft int
.Fn sbuf_cat "struct sbuf *s" "const char *str"
.Ft int
@ -177,8 +177,8 @@ The
.Fn sbuf_bcat
function appends the first
.Fa len
bytes from the byte string
.Fa str
bytes from the buffer
.Fa buf
to the
.Fa sbuf .
.Pp
@ -195,8 +195,8 @@ function replaces the contents of the
.Fa sbuf
with the first
.Fa len
bytes from the byte string
.Fa str .
bytes from the buffer
.Fa buf .
.Pp
The
.Fn sbuf_cat