chibi-scheme/lib/chibi/stty.module
Alex Shinn 3002d71a65 updating stty with get-terminal-width
(debated creating a full ioctl module, but all you really want
from ioctl is the TIOCGWINSZ command)
2010-05-15 15:25:43 +09:00

11 lines
299 B
Text

(define-module (chibi stty)
(export stty with-stty with-raw-io
get-terminal-width get-terminal-dimensions
TCSANOW TCSADRAIN TCSAFLUSH)
(import-immutable (scheme)
(srfi 33)
(srfi 69))
(include-shared "stty")
(include "stty.scm"))