Updated documentation
This commit is contained in:
parent
91d7605938
commit
0278124598
21
README.md
21
README.md
|
|
@ -17,7 +17,16 @@ to being portable by conforming to some specification.
|
|||
- [Documentation](#documentation)
|
||||
- [Types](#types)
|
||||
- [Primitives 1](#primitives-1)
|
||||
- c-type-size
|
||||
- define-c-library
|
||||
- define-c-procedure
|
||||
- c-bytevector?
|
||||
- c-bytevector-u8-set!
|
||||
- c-bytevector-u8-ref
|
||||
- c-bytevector-pointer-set!
|
||||
- c-bytevector-pointer-ref
|
||||
- [Primitives 2](#primitives-2)
|
||||
- define-c-callback
|
||||
- [c-bytevector](#c-bytevector)
|
||||
- [Accessors](#accessors)
|
||||
- [Environment variables](#environment-variables)
|
||||
|
|
@ -313,18 +322,6 @@ Stores the byte in element k of c-bytevector.
|
|||
|
||||
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-u8-set!** _c-bytevector_ _k_ _byte_)
|
||||
|
||||
If K is not a valid index of c-bytevector the behaviour is undefined.
|
||||
|
||||
Stores the byte in element k of c-bytevector.
|
||||
|
||||
(**c-bytevector-u8-ref** _c-bytevector_ _k_)
|
||||
|
||||
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-s16-set!
|
||||
c-bytevector-s16-ref
|
||||
|
|
|
|||
|
|
@ -207,17 +207,19 @@
|
|||
(ypsilon c-ffi)
|
||||
(ypsilon c-types)
|
||||
(only (core) define-macro syntax-case))))
|
||||
(export ;;;; Primitives
|
||||
(export ;;;; Primitives 1
|
||||
c-type-size
|
||||
define-c-library
|
||||
define-c-procedure
|
||||
define-c-callback
|
||||
c-bytevector?
|
||||
c-bytevector-u8-set!
|
||||
c-bytevector-u8-ref
|
||||
c-bytevector-pointer-set!
|
||||
c-bytevector-pointer-ref
|
||||
|
||||
;;;; Primitives 2
|
||||
define-c-callback
|
||||
|
||||
;;;; c-bytevector
|
||||
make-c-null
|
||||
c-null?
|
||||
|
|
|
|||
Loading…
Reference in New Issue