;;; Gray streams ;;; ;;; Copyright (C) 1999-2001 by Sam Steingold ;;; This is open-source software. ;;; GNU Lesser General Public License (LGPL) is applicable: ;;; No warranty; you may copy/modify/redistribute under the same ;;; conditions with the source code. ;;; See ;;; for details and the precise copyright document. (eval-when (compile load eval) #-(or allegro clisp cmu lispworks sbcl) (error 'not-implemented :proc "Gray streams") #+cmu (unless (ignore-errors (find-class 'ext:fundamental-input-stream)) (load "library:subsystems/gray-streams-library"))) (in-package #+allegro :excl #+(and clisp lisp=cl) :ext #+(and clisp (not lisp=cl)) :lisp #+cmu :ext #+lispworks :stream #+sbcl :sb-gray) (let ((cl-user::gray-symbols '(;; Classes FUNDAMENTAL-STREAM FUNDAMENTAL-INPUT-STREAM FUNDAMENTAL-OUTPUT-STREAM FUNDAMENTAL-CHARACTER-STREAM FUNDAMENTAL-BINARY-STREAM FUNDAMENTAL-CHARACTER-INPUT-STREAM FUNDAMENTAL-CHARACTER-OUTPUT-STREAM FUNDAMENTAL-BINARY-INPUT-STREAM FUNDAMENTAL-BINARY-OUTPUT-STREAM ;; Character input STREAM-READ-CHAR STREAM-UNREAD-CHAR STREAM-READ-CHAR-NO-HANG STREAM-PEEK-CHAR STREAM-LISTEN STREAM-READ-LINE STREAM-CLEAR-INPUT ;; Character output STREAM-WRITE-CHAR STREAM-LINE-COLUMN STREAM-START-LINE-P STREAM-WRITE-STRING STREAM-TERPRI STREAM-FRESH-LINE STREAM-FINISH-OUTPUT STREAM-FORCE-OUTPUT STREAM-CLEAR-OUTPUT STREAM-ADVANCE-TO-COLUMN ;; Binary streams STREAM-READ-BYTE STREAM-WRITE-BYTE))) (import cl-user::gray-symbols :port) (export cl-user::gray-symbols :port)) (provide :port-gray) ;;; file gray.lisp ends here