This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(use posix) | |
(define (make-serialport file) | |
(let ((fileno | |
(file-open | |
file | |
(bitwise-ior open/rdwr open/noctty open/nonblock)))) | |
; Enable blocking reads on the FD | |
(let ((current-fl (file-control fileno fcntl/getfl 0))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<!-- <!DOCTYPE poem SYSTEM "dolor.dtd"> --> | |
<poem> | |
<title>Dolor</title> | |
<!-- Here's a simple example of an XML document --> | |
<author> | |
<last>Roethke</last> | |
<first>Theodore</first> |