read-u8 -- r7rs Definition procedure;
Procedure variants:
(() -> (byte-or-eof))
byte-or-eof;((binary-input-port-eof) -> (eof-object))
binary-input-port-eof;eof-object;((binary-input-port-open) -> (byte-or-eof))
binary-input-port-open;byte-or-eof;scheme:base -- (scheme base);scheme -- (scheme);(read-u8) (read-u8 port)Returns the next byte available from the binary input
port, updating theportto point to the following byte. If no more bytes are available, an end-of-file object is returned.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.