2003-02-11 19:24:31 -05:00
|
|
|
; Copyright (c) 2003 RT Happe <rthappe at web de>
|
|
|
|
; See the file COPYING distributed with the Scheme Untergrund Library
|
|
|
|
|
|
|
|
;; byte (rather than character) i/o
|
|
|
|
(define-structure bytio bytio-face
|
|
|
|
(open krims ; assert
|
2003-02-15 20:15:47 -05:00
|
|
|
sequence-lib ; subsequence sequence-length
|
2003-02-11 19:24:31 -05:00
|
|
|
byte-vectors
|
2003-02-15 20:15:47 -05:00
|
|
|
let-opt ; let-optionals
|
|
|
|
srfi-23 ; error
|
|
|
|
scsh ; fdes & port stuff, bitwise-and
|
|
|
|
scheme
|
2003-02-11 19:24:31 -05:00
|
|
|
ascii ; char<->ascii
|
|
|
|
i/o ; read-block
|
|
|
|
ports ; port-buffer
|
|
|
|
primitives ; copy-bytes!
|
|
|
|
)
|
|
|
|
(files rw-bytes))
|
|
|
|
|