(read-char &optional stream eof-error-p eof-value recursive-p) => character(write-char character &optional stream) => character(read-line &optional stream eof-error-p eof-value recursive-p) => line, missing-newline-p(write-line line &optional stream) => line| Parameter | Detail |
|---|---|
stream | The stream to read from or write to. |
eof-error-p | Should an error be signalled if end of file is encountered. |
eof-value | What value should be returned if eof is encountered, and eof-error-p is false. |
recursive-p | Is the read-operation called recursively from READ. Usually this should be left as NIL. |
character | The character to write, or the character that was read. |
line | The line to write, or the line that was read. |