chibi-scheme/lib/chibi/io.sld
Alex Shinn bd32131b9d The big renaming to define-library in .sld, make it possible to pass
other version numbers than 7 to `scheme-report-environment`, providing
initial (scheme base) library.
2011-10-02 17:16:05 +09:00

13 lines
594 B
Scheme

(define-library (chibi io)
(export read-string read-string! write-string read-line write-line
port-fold port-fold-right port-map
port->list port->string-list port->sexp-list port->string
file-position set-file-position! seek/set seek/cur seek/end
make-custom-input-port make-custom-output-port
make-null-output-port make-broadcast-port make-concatenated-port
make-generated-input-port make-filtered-output-port
make-filtered-input-port)
(import (scheme) (chibi ast))
(include-shared "io/io")
(include "io/io.scm"))