Updated documentation

This commit is contained in:
retropikzel 2025-05-03 07:42:54 +03:00
parent fe725f92b5
commit 80bc319797
1 changed files with 4 additions and 9 deletions

View File

@ -370,8 +370,7 @@ Returns the endianness symbol associated implementations preferred endianness
(usually that of the underlying machine architecture). This may be any
\<endianness symbol\>, including a symbol other than big and little.
(**make-c-bytevector** _k_)
(**make-c-bytevector** _k_)</br>
(**make-c-bytevector** _k_ _fill_)
Returns a newly allocated c-bytevector of _k_ bytes.
@ -395,15 +394,11 @@ If K is not a valid index of c-bytevector the behaviour is undefined.
Returns the byte at index k of c-bytevector.
(**c-bytevector-sint-set!** _bytevector_ _k_ _endianness_ _size_)
(**c-bytevector-sint-ref** _bytevector_ _k_ _endianness_ _size_)
(**c-bytevector-uint-set!** _bytevector_ _k_ _endianness_ _size_)
(**c-bytevector-sint-set!** _bytevector_ _k_ _endianness_ _size_)</br>
(**c-bytevector-sint-ref** _bytevector_ _k_ _endianness_ _size_)</br>
(**c-bytevector-uint-set!** _bytevector_ _k_ _endianness_ _size_)</br>
(**c-bytevector-uint-ref** _bytevector_ _k_ _endianness_ _size_)
Size must be a positive exact integer object. If K , . . . , k +
size 1 is not valid indices of bytevector the behavior is unspecified.