#| -*-Scheme-*-
-$Id: fileio.scm,v 1.12 1999/02/16 00:34:36 cph Exp $
+$Id: fileio.scm,v 1.13 1999/02/16 00:40:59 cph Exp $
Copyright (c) 1991-1999 Massachusetts Institute of Technology
(LENGTH ,operation/length)
(PEEK-CHAR ,operation/peek-char)
(READ-CHAR ,operation/read-char)
- (READ-CHARS ,operation/read-chars)
(READ-STRING ,operation/read-string)
(READ-SUBSTRING ,operation/read-substring)
(REST->STRING ,operation/rest->string)
#| -*-Scheme-*-
-$Id: genio.scm,v 1.9 1999/02/16 00:34:42 cph Exp $
+$Id: genio.scm,v 1.10 1999/02/16 00:41:03 cph Exp $
Copyright (c) 1991-1999 Massachusetts Institute of Technology
(INPUT-TERMINAL-MODE ,operation/input-terminal-mode)
(PEEK-CHAR ,operation/peek-char)
(READ-CHAR ,operation/read-char)
- (READ-CHARS ,operation/read-chars)
(READ-STRING ,operation/read-string)
(READ-SUBSTRING ,operation/read-substring)
(SET-INPUT-BLOCKING-MODE ,operation/set-input-blocking-mode)
(define (operation/read-char port)
(input-buffer/read-char (port/input-buffer port)))
-(define (operation/read-chars port result-buffer)
- (input-buffer/read-substring (port/input-buffer port)
- result-buffer
- 0
- (string-length result-buffer)))
-
(define (operation/read-substring port string start end)
(input-buffer/read-substring (port/input-buffer port) string start end))
#| -*-Scheme-*-
-$Id: runtime.pkg,v 14.304 1999/02/16 00:34:22 cph Exp $
+$Id: runtime.pkg,v 14.305 1999/02/16 00:40:48 cph Exp $
Copyright (c) 1988-1999 Massachusetts Institute of Technology
operation/output-terminal-mode
operation/peek-char
operation/read-char
- operation/read-chars
operation/read-string
operation/read-substring
operation/set-input-blocking-mode
#| -*-Scheme-*-
-$Id: runtime.pkg,v 14.310 1999/02/16 00:34:29 cph Exp $
+$Id: runtime.pkg,v 14.311 1999/02/16 00:40:53 cph Exp $
Copyright (c) 1988-1999 Massachusetts Institute of Technology
operation/output-terminal-mode
operation/peek-char
operation/read-char
- operation/read-chars
operation/read-string
operation/read-substring
operation/set-input-blocking-mode