29 lines
378 B
Scheme
29 lines
378 B
Scheme
|
; Copyright (c) 2003 RT Happe <rthappe at web de>
|
||
|
; See the file COPYING distributed with the Scheme Untergrund Library
|
||
|
|
||
|
(define-interface bytio-face
|
||
|
(export read-byte
|
||
|
peek-byte
|
||
|
write-byte
|
||
|
|
||
|
read-bytes!/partial
|
||
|
read-bytes/partial
|
||
|
read-bytes!
|
||
|
read-bytes
|
||
|
write-bytes/partial
|
||
|
write-bytes
|
||
|
))
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|